Found 34490 Articles for Programming

Check if a string ends with given word in PHP

Samual Sam
Updated on 30-Dec-2019 07:50:17

427 Views

Create a function to check whether a string ends with the specified string or not. The function should return TRUE on success or FALSE on failure.The following is the syntax −endFunc(str, lastStr)Consider the following parameters in it to check −str − The string to be testedlastStr − The text to be searched in the end of the specified string.ExampleThe following is an example − Live DemoOutputThe following is the output −False!

Check if a string starts with given word in PHP

karthikeya Boyini
Updated on 30-Dec-2019 07:24:01

592 Views

Create a function to check whether a string begins with the specified string or not. The function should return TRUE on success or FALSE on failure.The following is the syntax −begnWith(str, begnStr)Consider the following parameters in it to check −str − The string to be testedbegnStr − The text to be searched in the beginning of the specified string.ExampleThe following is an example − Live Demo

connection_status() function in PHP

Samual Sam
Updated on 30-Jul-2019 22:30:24

110 Views

The connection_status() function returns the connection status.Syntaxconnection_status()ParametersNAReturnThe connection_status() function returns the following possible values. This is the status bitfield −0 - CONNECTION_NORMAL - connection is running normally1 - CONNECTION_ABORTED - connection is aborted by user or network error2 - CONNECTION_TIMEOUT - connection timed out3 - CONNECTION_ABORTED & CONNECTION_TIMEOUTExampleThe following is an example − Live Demo

mail() function in PHP

karthikeya Boyini
Updated on 30-Jul-2019 22:30:24

230 Views

The mail() function allows in sending emails directly from a script.Syntaxmail(to,sub,msg,headers,parameters);Parametersto − The receiver / receivers of the emailsub − The subject of the email.msg − The message to be sent.headers − The additional headers, such as From, Cc, and Bcc.parameters − The additional parameter to the sendmail program. This was added in PHP 4.0.5.ReturnThe mail() function returns the hash value of the address parameter, or FALSE on failure.ExampleThe following is an example to send an email −

ezmlm_hash() function in PHP

Samual Sam
Updated on 30-Jul-2019 22:30:24

67 Views

The ezmlm_hash() function calculates the hash value needed when keeping EZMLM mailing lists in a MySQL database.Syntaxezmlm_hash(addr);Parametersaddr − The email address being hashed.ReturnThe ezmlm_hash() function returns the hash value of addr.ExampleThe following is an example −

ftp_systype() function in PHP

Samual Sam
Updated on 30-Jul-2019 22:30:24

38 Views

The ftp_systype() function returns the system type identifier of the FTP server.Syntaxftp_systype(con);Parameterscon − The FTP connectionReturnThe ftp_systype() function returns the system type on success, or FALSE on failure.ExampleThe following is an example −

ftp_ssl_connect() function in PHP

Samual Sam
Updated on 30-Jul-2019 22:30:24

230 Views

The ftp_ssl_connect() function opens a secure SSL-FTP connection.Syntaxftp_ssl_connect(host,port,timeout);Parametershost − The FTP server address. Can be a domain address or an IP address.port − The port to connect to. Here the default is 21.timeout − The timeout for network operations.ReturnThe ftp_ssl_connect() function returns a SSL-FTP stream on success or FALSE on error.ExampleThe following is an example −

ftp_size() function in PHP

karthikeya Boyini
Updated on 30-Jul-2019 22:30:24

43 Views

The ftp_size() function is used to get the size of a particular file on the FTP server.Syntaxftp_size(conn, myfile)Parametersconn − The FTP connectionmyfile − The server fileReturnThe ftp_size() function returns the size of the particular file in bytes on success.ExampleThe following is an example to get the size of file “new.txt” −

ftp_site() function in PHP

Samual Sam
Updated on 30-Jul-2019 22:30:24

32 Views

The ftp_site() function sends an FTP SITE command to the FTP server.Syntaxftp_site(conn,command);Parametersconn − The FTP connectioncommand − The SITE command. These commands vary from server to server and used in handling OS specific features such as file permissions and group membership.ReturnThe ftp_site() function returns TRUE on success or FALSE on failure.ExampleThe following is an example −

ftp_set_option() function in PHP

karthikeya Boyini
Updated on 30-Jul-2019 22:30:24

64 Views

The ftp_set_option() function sets runtime options for the FTP connection.Syntaxftp_set_option(conn,option,value);Parametersconn − The FTP connectionoption − The runtime option to set. The following are the possible values:- FTP_TIMEOUT_SEC- FTP_AUTOSEEKvalue − The value of the option parameter set aboveReturnThe ftp_set_option() function returns TRUE if the option could be set, or FALSE.ExampleThe following is an example −

Advertisements