PHP 傳值問題?

來源:互聯網
上載者:User
function str_emoji($str,$cdn){  function empic($h){    $p=dechex(str_replace(array('&#',';'),'',$h));    return '';    //$cdn無法傳進來!!!  };  $str=preg_replace('#(\&\#[0-9]{6}\;)#ie','empic("\\1")',$str);  return $str;};echo str_emoji($str,$_POST['face']);

$cdn無法傳進函數??

回複內容:

function str_emoji($str,$cdn){  function empic($h){    $p=dechex(str_replace(array('&#',';'),'',$h));    return '';    //$cdn無法傳進來!!!  };  $str=preg_replace('#(\&\#[0-9]{6}\;)#ie','empic("\\1")',$str);  return $str;};echo str_emoji($str,$_POST['face']);

$cdn無法傳進函數??

php中的閉包中變數的作用範圍和js中的稍微有點不同。要使閉包函數外的變數作用於閉包函數內,可用use關鍵字。參考下面一個例子:

function test($a, $b) {    $t = function ($c) use ($a, $b) {        return $a + $b + $c;    };    return $t(3);}echo test(1, 2);  // 6

$cdn不在empix()的範圍下,它是str_emoji()的全域變數。要把$cdn 傳進empix()。

//自己測試下function str_emoji($str,$cdn){  function empic($h,$cdn){    $p=dechex(str_replace(array('&#',';'),'',$h));    return '';    //$cdn無法傳進來!!!  };  $str=preg_replace('#(\&\#[0-9]{6}\;)#ie','empic("\\1",'.$cdn.')',$str);  return $str;};
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.