php新手請問變數輸出有關問題

來源:互聯網
上載者:User
php新手請教變數輸出問題
問個變數輸出顯示的問題,老鳥見笑!
現在有變數$ssdd=array(a=>2,b=>3);我想在調試過程中輸出$ssdd,而不是裡面的a或者B的值
請問用什麼函數輸出啊。
如果直接echo $ssdd,則輸出array
如果print_f($ssdd)則輸出array
怎麼操作能輸出$ssdd這個變數的名字呢?
------解決方案--------------------
var_dump()或者print_r();
------解決方案--------------------
var_export()
------解決方案--------------------
引用:
$只是聲明變數的符號,實際的變數名為ssdd 可用get_defined_vars()擷取


function get_variable_name(&$var, $scope = NULL) {
if (NULL == $scope) {
$scope = $GLOBALS;
}

$tmp = $var;
$var = "tmp_exists_" . mt_rand();
$name = array_search($var, $scope, TRUE);
$var = $tmp;
return $name;
}
echo get_variable_name($ssdd);//輸出ssdd,我也沒看懂
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.