groups

Link to this snippet:


Download to Code Collector

language: PHP
licence: Other

number replace

options: send to code collectorview all davidholbrook's snippets
<?php
$search = array('4', '3', '2', '1');
$replace = array('Super Wicked Urgent', 'ASAP', 'When you get to it', 'It can wait');
$subject = $row_changes['urgency'];

echo str_replace($search, $replace, $subject);
?>

===============

<?php
$search = $row_changes['user_num'];
$replace = $row_users['wholename'];
$subject = $row_changes['user_num'];

echo str_replace($search, $replace, $subject);
?>