fork download
  1. <?
  2. $fuga = 'PIYO';
  3. $def = "\$${fuga}\$";
  4. ( $fuga
  5. , $def
  6. , "hoge $fuga abc${def}ghi"
  7. );
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
string(4) "PIYO"
string(6) "$PIYO$"
string(22) "hoge PIYO abc$PIYO$ghi"