fork download
  1. <?php
  2. $data = '😀 😃 😄';
  3. $oldString = array('😀','😃','😄');
  4. $newString = array('smile1','smile2','smile3');
  5. echo str_replace( $oldString, $newString, $data );
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
smile1 smile2 smile3