您好,如何输入多个值,就像在这个php函数上的电子邮件$ header一样。这是代码:
function strToHex($string){
$hex='';
for ($i=0; $i < strlen($string); $i++){
$hex .= "%".dechex(ord($string[$i]));
}
return $hex;
}
$script = '<p style="font-size:16px; color:red;">Hello world!</p>';
$encoded = strToHex($script);
?>
<script language="javascript">
document.write(unescape("<?php echo $encoded ?>"));
</script>
基本上我想为php函数设置多个脚本值。这是代码:
$script = '<p style="font-size:16px; color:red;">Hello world!</p>';
$script = '<p style="font-size:16px; color:red;">This is new</p>';
如何为$ script添加多个值?
答案 0 :(得分:1)
你只需要连接它。
尝试
$script = '<p style="font-size:16px; color:red;">Hello world!</p>';
$script .= '<p style="font-size:16px; color:red;">This is new</p>';
注意第二个等号前的句号。