×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: PHP
Posted by: Jorge Alcalá
Added: Apr 24, 2020 9:49 PM
Views: 4309
Tags: no tags
  1.                             if(substr($parte,0,20) == 'FARO AUXILIAR LEDS M'){
  2.                                 echo $parte;
  3.                                 for($l=0;$l<strlen($parte);$l++){
  4.                                     $letra = substr($parte, $l, 0);
  5.                                     echo "(" . $letra . '>' . ord($letra) . ")";
  6.                                 }
  7.                                 echo '<br>';
  8.                             }