PHP语句,多重引号问题
双引号里面有单引号,单引号里面还需要引号怎么办?
echo "<input type='button' class='btnStyle' name='button' id='sbutton' onclick='location.href='__URL__/edit?id={$s.uid}&'' value='完成'/>"; onclick里面的单引号里面还要加引号,怎么办
------解决方案--------------------echo "<input type='button' class='btnStyle' name='button' id='sbutton' onclick=\"location.href='__URL__/edit?id={$s.uid}&'\" value='完成'/>";