主頁(yè) > 知識(shí)庫(kù) > 使用lua實(shí)現(xiàn)php的var_dump()函數(shù)功能

使用lua實(shí)現(xiàn)php的var_dump()函數(shù)功能

熱門標(biāo)簽:地圖標(biāo)注大廈 冀州市地圖標(biāo)注 怎么去除地圖標(biāo)注 清朝地圖標(biāo)注哈爾濱 漳州智云呼電話機(jī)器人 百度地圖標(biāo)注早餐區(qū)域 武漢外呼防封系統(tǒng)多少錢 新岸線智能電銷機(jī)器人 個(gè)人怎么在地圖標(biāo)注需要的店鋪

習(xí)慣了php中的var_dump()函數(shù),而如今寫(xiě)lua的時(shí)候總習(xí)慣使用var_dump()函數(shù),于是就自己動(dòng)手寫(xiě)了一個(gè)類似功能的var_dump()函數(shù)。

復(fù)制代碼 代碼如下:

function var_dump(data, max_level, prefix)  
    if type(prefix) ~= "string" then  
        prefix = "" 
    end  
    if type(data) ~= "table" then  
        print(prefix .. tostring(data))  
    else 
        print(data)  
        if max_level ~= 0 then  
            local prefix_next = prefix .. "    " 
            print(prefix .. "{")  
            for k,v in pairs(data) do 
                io.stdout:write(prefix_next .. k .. " = ")  
                if type(v) ~= "table" or (type(max_level) == "number" and max_level = 1) then  
                    print(v)  
                else 
                    if max_level == nil then  
                        var_dump(v, nil, prefix_next)  
                    else 
                        var_dump(v, max_level - 1, prefix_next)  
                    end  
                end  
            end  
            print(prefix .. "}")  
        end  
    end  
end 

您可能感興趣的文章:
  • 獲取Lua表結(jié)構(gòu)(table)數(shù)據(jù)實(shí)例
  • Lua極簡(jiǎn)入門指南:全局變量
  • Lua極簡(jiǎn)入門指南(六):模塊
  • Lua中實(shí)現(xiàn)StringBuffer功能
  • lua獲取未來(lái)某時(shí)間點(diǎn)的時(shí)間戳解決方案

標(biāo)簽:天門 金昌 德宏 儋州 天門 宣城 臺(tái)灣 濰坊

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《使用lua實(shí)現(xiàn)php的var_dump()函數(shù)功能》,本文關(guān)鍵詞  使用,lua,實(shí)現(xiàn),php,的,var,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《使用lua實(shí)現(xiàn)php的var_dump()函數(shù)功能》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于使用lua實(shí)現(xiàn)php的var_dump()函數(shù)功能的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章