在PHP中重新调整字符串

时间:2014-11-19 23:31:49

标签: javascript php

我想返回以下字符串,但我仍然无法在几个小时内完成它。有谁告诉我,我做错了什么?谢谢。

<?php
return '<a href="http://www.google.com/recaptcha/mailhide/d?k=01_e8P8ju5xfBlbOiP--WjQ==&amp;c=dfdzsds-j7y0aJ6_d6Av9xqjfaDIluL9S_AOEw=" onclick="window.open('http://www.google.com/recaptcha/mailhide/d?k\073301_e8P82df345sBlbOiP--WjQ\75\75\46c\75UJhOCfdfdfasdvuH1t-j7y0aJ6_d6AvqjfaDIluL9S_AOEw\075', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;" title="Reveal this e-mail address">rs...</a>@gmail.com.com';
?>

1 个答案:

答案 0 :(得分:1)

onclick属性中的JavaScript代码中有单引号。你需要通过在每个单引号前放置一个反斜杠来逃避这些。