我正在尋找適當的解決方案,我已經做了這段代碼。我只想在打印XML時打印我的XML。 from xml.dom.minidom import Document, DOMImplementation
class MyClass(object):
init():
pass
def create_xml():
doc = Document()
# I know i
正如我認爲,有三種方法來在PHP訪問對象的屬性: 1.魔術方法 public function __get($property) {
if (property_exists($this, $property)) {
return $this->$property;
}
}
public function __set($property, $value) {
我使用PHP 5.6以下的方法,它總是能正常工作 public function __get($name){
if(!empty($this->_dynamicFields[$name])){
if(!empty($this->_dynamicData[$name])){
return $this->_dynamicData[$name];