Php tutorials for beginners with example 0

trim – PHP String Functions

Syntax : trim ( string, charlist); Description : trim() function will truncate spaces or other characters from the beginning and end of input string. It will remove “hi” from starting and “es.”...

Php tutorials for beginners with example 0

hebrev – PHP String Functions

Syntax : hebrev ( string, charsperline ); Description : hebrev() function will convert Hebrew text from a right-to-left flow to a left-to-right flow. Basically it converts logical Hebrew text to visual text. It...

Php tutorials for beginners with example 0

hebrevc – PHP String Functions

Syntax : hebrevc ( string, charsperline ); Description : hebrevc() function will convert Hebrew text from a right-to-left flow to a left-to-right flow with newline conversion. Basically it converts logical Hebrew text to...

Php tutorials for beginners with example 0

strtolower – PHP String Functions

Syntax : strtolower ( string ); Description : strtolower() function will take string as input and converts all letter to lowercase letter, if that character is alphabetic. Parameter : string – This is...

Php tutorials for beginners with example 0

strtoupper – PHP String Functions

Syntax : strtoupper ( string ); Description : strtoupper() function will take string as input and converts all letter to uppercase letter, if that character is alphabetic. Parameter : string – This is...

Php tutorials for beginners with example 0

lcfirst – PHP String Functions

Syntax : lcfirst ( string ); Description : lcfirst() function will take string as input and converts its first letter to lowercase letter, if that character is alphabetic. In general language, its...

Php tutorials for beginners with example 0

ucfirst – PHP String Functions

Syntax : ucfirst ( string ); Description : ucfirst() function will take string as input and converts its first letter of a string to uppercase letter, if that character is alphabetic. In...

Php tutorials for beginners with example 0

ucwords – PHP String Functions

Syntax : ucwords ( string, seperator/delimiters ); Description : ucwords() function will take string as input and converts first letter of every word in a string to uppercase letter, if that character...

Php tutorials for beginners with example 0

join – PHP String Functions

Syntax : join ( separator, array ); Description : join() function will glue(join) array elements in a string. join()  is an alias of the PHP implode() function. Parameter : separator – Optional....

Php tutorials for beginners with example 0

convert_cyr_string – PHP String Functions

Syntax : convert_cyr_string (string, from, to); Description : convert_cyr_string() function will converts a string from one Cyrillic character set to another. Parameter : string – This is Required parameter. This is string which...

Magento Step by Step tutorials 0

Magento Create Category Programmatically

Magento Create Category Programmatically : You can create categories programmatically in Magento by Mage::getModel(‘catalog/category’) method which is used to initialize and create the category in Magento 1.9 Note : There...

Step by step Bootstrap 3 tutorials 0

Bootstrap 3 Wells

Bootstrap provides special well classes to give content inset effect for the content to be given different look. You can give the element this look by just adding .well class...

Php tutorials for beginners with example 0

implode – PHP String Functions

Syntax : implode ( separator, array ); Description : implode function will join array elements in a string. Parameter : separator – Optional. This is an optional parameter. By default it is an...