📜  通过 JSON 发送 HTML 代码 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:15.037000             🧑  作者: Mango

代码示例1
$html_content="

hello this is sample text

"; $json_array=array( 'html_content'=>$html_content ); echo json_encode($json_array);