Posts

Showing posts from October, 2014

PHP Substr_replace function

Image
<?php $find = array ('is','string','example'); $replace = array ('IS','STRING','EXAMPLE'); $string = 'This is a string, and is an example.'; $string_new = str_replace($find,$replace, $string); echo $string_new; ?>

PHP

PHP ARRAY  <?php $array  = array("username","password","age","address"); print_r($array); $shift = array_shift($array); echo $shift.'<br>'; $pop = array_pop($array); echo $pop; ?>