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.”...
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.”...
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...
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...
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...
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...
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...
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...
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...
If you enjoy creating artworks and search for the ways to present your talent to the highly demanding online community, then art & culture WordPress themes from TemplateMonster will help...
History and Introduction : When the Internet began in the early 1990s, it was a desktop-only version. Soon automation and research put the experts to make mobile friendly solutions but...
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....
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...
Spring is definitely one of the best seasons for shopping. It’s getting warmer and all shopaholics crave to get a new outfit for office, walks in the park, meetings with...
Breadcrumbs are important part of website navigation and they are fundamental part of the layout as their need to define the navigational hierarchy on each page respectively. This comes useful...
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...
PHP is one of the most server site scripting language used all over the world. Today we are going to discuss the basic questionnaire for freshers. When you are going...
Mage::getSingleton(): Mage::getSingleton(‘catalog/product’); will check the Object of the given model already exists and return that if it does. If it doesn’t exist, it will create a new object of the given...
Responsive Web Design (RWD) has now become the future of web development. Hundreds of mobile devices, tablets, Personal Laptops, and other electronic devices show the same website content. The concept of...
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...
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...