You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?php// strlen() - Return the length of a stringechostrlen("Hello World");
// str_word_count() - Count words in a stringechostr_word_count("Hello World");
// strrev() - Reverse a stringechostrrev("Hello World");
// strpos() - Search for a text within a stringechostrpos("Hello World", "World");
// str_replace() - Replace text within a stringechostr_replace("World", "Dolly", "Hello World");