Help for this page

Select Code to Download


  1. or download this
    $x = '10+4';
    print( "$x" );  # 10+4, not 14
    
  2. or download this
    $x = '10+4';
    print( $x );  # 10+4, not 14
    
  3. or download this
    $x = '10+4';
    print( eval $x );  # 14