fork download
  1. <?php
  2.  
  3.  
  4. $value = 'Leni&#8302;&#8302;&#8302;&#8302;&#8302;&#8302;&#8302;&#8302;&#8302;&#8302;&#8302;&#8302;&#8302;';
  5. $value = html_entity_decode(strval($value), ENT_QUOTES, 'UTF-8');
  6.  
  7. echo $value=='Leni'? "$value is Equal to Leni" : "$value is not equal to Leni";
  8.  
  9. ?>
  10.  
Success #stdin #stdout 0.02s 23760KB
stdin
Standard input is empty
stdout
Leni is not equal to Leni