<tutorialjinni.com/>

endsWith in PHP

Posted Under: Snippets on Aug 18, 2018
endsWith in PHP
PHP snippet function to check whether a string endsWith with a specified string or not. Function returns Boolean. This function can also handle case sensitivity.

startWith in PHP

Posted Under: Snippets on Aug 18, 2018
startWith in PHP
PHP snippet function to check whether a string startWith with a specified string or not. Function returns Boolean. This function can also handle case sensitivity.

Decrypt String Using PHP

Posted Under: Snippets on Aug 18, 2018
Decrypt String Using PHP
PHP snippet to decrypt AES-256 encrypted string with 32 Bytes key. In order to use decryption php_mcrypt extension need to be installed and activated.

CSS Style Ordered List numbers

Posted Under: Snippets on Aug 17, 2018
CSS Style Ordered List numbers
This CSS snippet will stylized order list using :before pseudo CSS element.

Encrypt String Using PHP

Posted Under: Snippets on Aug 17, 2018
Encrypt String Using PHP
PHP snippet to Encrypt string using AES-256 encryption algorithm with 32 Bytes key. In order to use encryption php_mcrypt extension need to be installed and activated.