第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

wordpress中的PHP函數(shù)刪除斜線

wordpress中的PHP函數(shù)刪除斜線

PHP
慕桂英546537 2023-05-12 15:44:31
我正在研究 Wordpress 主題,該主題通過(guò)update_post_meta()hook 作為 post將自定義 Javascript 存儲(chǔ)到數(shù)據(jù)庫(kù)中metadata。但問(wèn)題是,PHP file_get_contents()異常刪除反斜杠。我在Wordpress 中PHP使用的功能functions.phpfunction add_template($post_id){    $custom_javascript = get_post_meta( $post->ID, 'custom_javascript', true );    $template_js = file_get_contents(get_template_directory_uri(). '/template/prism.js');    update_post_meta( $post_id, 'custom_javascript',  $template_js );}add_action( 'save_post', 'add_template' );一個(gè)錯(cuò)誤:原始的Javascript:(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)修改后的Javascript:(^|[^\])/*[sS]*?(?:*/|$)如何擺脫這個(gè)問(wèn)題?任何幫助/建議將不勝感激。
查看完整描述

1 回答

?
人到中年有點(diǎn)甜

TA貢獻(xiàn)1895條經(jīng)驗(yàn) 獲得超7個(gè)贊

只需要添加addslashes()功能。

因此,wordpress 的工作PHP代碼將是 -

function add_template($post_id){


? ? $custom_javascript = get_post_meta( $post->ID, 'custom_javascript', true );


? ? $template_js = file_get_contents(get_template_directory_uri(). '/template/prism.js');


? ? update_post_meta( $post_id, 'custom_javascript',? addslashes($template_js ));

}


add_action( 'save_post', 'add_template' );

或者簡(jiǎn)而言之


function add_template($post_id){


? ? $custom_javascript = get_post_meta( $post->ID, 'custom_javascript', true );


? ?update_post_meta( $post_id, 'custom_javascript',? addslashes(file_get_contents(get_template_directory_uri(). '/template/prism.js' )));

}


add_action( 'save_post', 'add_template' );


查看完整回答
反對(duì) 回復(fù) 2023-05-12
  • 1 回答
  • 0 關(guān)注
  • 164 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)