當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP SimpleXMLElement addAttribute()用法及代碼示例


前提條件: 閱讀XML基礎

SimpleXMLElement::addAttribute()函數是PHP中的內置函數,可在SimpleXML對象中添加屬性。

用法:


void SimpleXMLElement::addAttribute($name, $value, $namespace)

參數:此函數接受上述和以下所述的三個參數:

  • $name:它是必填參數。它指定要添加的屬性的名稱。
  • $value:它是可選參數。它指定要添加的屬性的值。
  • $namespace:它是可選參數。它為屬性指定名稱空間。

返回值:該函數不接受任何參數。

注意:此函數適用於PHP 5.1.3和更高版本。

例:

<?php 
  
// Loading XML document to $user 
$user = <<<XML 
<user> 
<username> user123 </username> 
<name> firstname lastname </name> 
<phone> +91-9876543210 </phone> 
<detail> I am John Doe. Live in Kolkata, India. </detail> 
</user> 
XML; 
  
// Creating new SimpleXMLElement 
// object from $user 
$xml = new SimpleXMLElement($user); 
  
// Adding child named "institution"  
// and valued "geeksforgeeks" 
$xml->addChild("institution", "geeksforgeeks"); 
  
// Adding attribute named "type" and value 
// "educational" in institution element. 
$xml->institution->addAttribute("type", "educational"); 
  
// Printing as XML 
echo $xml->asXML(); 
echo $xml->asXML('savexmltofile.xml'); 
  
?>

輸出:

user123 firstname lastname +91-9876543210 I am John Doe.
Live in Kolkata, India. geeksforgeeks 1

瀏覽器中的源代碼:

<?xml version="1.0"?> 
<user> 
<username> user123 </username> 
<name> firstname lastname </name> 
<phone> +91-9876543210 </phone> 
<detail> I am John Doe. Live in Kolkata, India. </detail> 
<institution type="educational">geeksforgeeks</institution></user> 
<br>1

相關用法


注:本文由純淨天空篩選整理自gekcho大神的英文原創作品 PHP | SimpleXMLElement addAttribute() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。