您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“PHP如何實(shí)現(xiàn)生成vcf vcard文件功能類”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“PHP如何實(shí)現(xiàn)生成vcf vcard文件功能類”這篇文章吧。
具體如下:
前面介紹了php讀取vcf文件的方法,這里再來研究一下vcf文件的生成方法。
VCF格式是Windows系統(tǒng)中outlook的名片存儲格式,打開VCF格式需要使用手機(jī)的相應(yīng)配套軟件,使用outlook也可以打開VCF文件。
手機(jī)通訊錄保存的文件格式也是vcf格式。這里就來給出一個使用php生成vcf格式文件的實(shí)例。
具體代碼如下:
<?php date_default_timezone_set('PRC'); include("VCardIFL.class.php"); $arData=array(); $arData["fileName"]='jb51_vcf_demo'; $arData["saveTo"]='tmpFile'; $arData["vcard_birtda"]=date('Y-m-d',time()); $arData["vcard_f_name"]='Tom'; $arData["vcard_s_name"]='Green'; $arData["vcard_uri"]='https://www.jb51.net'; $arData["vcard_nickna"]='Coder'; $arData["vcard_note"]='Write Code'; $arData["vcard_cellul"]='1388888888x'; $arData["vcard_compan"]='Blue Best Comp'; $arData["vcard_p_pager"]='No'; $arData["vcard_c_mobile"]='1388888888x'; $arData["vcard_h_addr"]='Blue Best Comp'; $arData["vcard_h_city"]='XuZhou'; $arData["vcard_h_coun"]='China'; $arData["vcard_h_fax"]='No'; $arData["vcard_h_mail"]='jb51@fmail.com'; $arData["vcard_h_phon"]='1388888888x'; $arData["vcard_h_zip"]='jb51'; $arData["vcard_h_uri"]='http://tools.jb51.net'; $arData["vcard_w_addr"]='Star Shine'; $arData["vcard_w_city"]='Xuzhou'; $arData["vcard_w_coun"]='China'; $arData["vcard_w_fax"]='no'; $arData["vcard_w_mail"]='StarShine@fmail.com'; $arData["vcard_w_phon"]='1366666666X'; $arData["vcard_w_role"]='Boss'; $arData["vcard_w_titl"]='Demo test'; $arData["vcard_w_zip"]='StarZip'; $arData["vcard_w_uri"]='http://www.SimpleTest.com'; $vcfdemo=new VCardIFL($arData); $vcfdemo->createVcard(); echo $vcfdemo->SaveVcard()?'創(chuàng)建成功!':'創(chuàng)建失?。?#39;; ?>
運(yùn)行代碼可在tmpFile文件夾下創(chuàng)建一個相應(yīng)的jb51_vcf_demo.vcf文件,如下圖所示:
以上是“PHP如何實(shí)現(xiàn)生成vcf vcard文件功能類”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。