迄今为止,这是实例化一个空通用 php 对象的最简单且正确的方法,然后您可以根据需要修改它以用于任何目的
<?php $genericObject = new stdClass(); ?>
我很难找到这个,希望它能帮助其他人!
要创建一个新的对象,可以使用new
语句实例化一个类
<?php
class foo
{
function do_foo()
{
echo "Doing foo.";
}
}
$bar = new foo;
$bar->do_foo();
?>
有关完整讨论,请参阅类和对象章节。
如果将对象转换为对象,则不会修改它。如果将任何其他类型的值转换为对象,则会创建一个新的stdClass内置类的实例。如果该值为null
,则新实例将为空。一个数组转换为一个对象,其属性名称为键,对应值为值。请注意,在这种情况下,在 PHP 7.2.0 之前,数字键是不可访问的,除非进行迭代。
<?php
$obj = (object) array('1' => 'foo');
var_dump(isset($obj->{'1'})); // 从 PHP 7.2.0 开始输出 'bool(true)';之前输出 'bool(false)'
var_dump(key($obj)); // 从 PHP 7.2.0 开始输出 'string(1) "1"';之前输出 'int(1)'
?>
对于任何其他值,名为scalar
的成员变量将包含该值。
<?php
$obj = (object) 'ciao';
echo $obj->scalar; // 输出 'ciao'
?>
迄今为止,这是实例化一个空通用 php 对象的最简单且正确的方法,然后您可以根据需要修改它以用于任何目的
<?php $genericObject = new stdClass(); ?>
我很难找到这个,希望它能帮助其他人!
在 PHP 7 中,有几种方法可以创建空对象
<?php
$obj1 = new \stdClass; // 实例化 stdClass 对象
$obj2 = new class{}; // 实例化匿名类
$obj3 = (object)[]; // 将空数组强制转换为对象
var_dump($obj1); // object(stdClass)#1 (0) {}
var_dump($obj2); // object(class@anonymous)#2 (0) {}
var_dump($obj3); // object(stdClass)#3 (0) {}
?>
$obj1 和 $obj3 类型相同,但 $obj1 !== $obj3。此外,所有三个都将通过 json_encode() 转换为一个简单的 JS 对象 {}
<?php
echo json_encode([
new \stdClass,
new class{},
(object)[],
]);
?>
输出:[{},{},{}]
从 PHP 5.4 开始,我们可以使用更漂亮的形式创建带有某些属性和值的 stdClass 对象
<?php
$object = (object) [
'propertyOne' => 'foo',
'propertyTwo' => 42,
];
?>
这是一个更新版本的 'stdObject' 类。在扩展 MVC 设计模式中的控制器时非常有用,用户可以创建自己的类。
希望它对您有所帮助。
<?php
类 stdObject {
public function __construct(数组 $arguments = array()) {
if (!empty($arguments)) {
foreach ($arguments as $property => $argument) {
$this->{$property} = $argument;
}
}
}
public function __call($method, $arguments) {
$arguments = array_merge(array("stdObject" => $this), $arguments); // 注意:方法参数 0 将始终引用主类 ($this)。
if (isset($this->{$method}) && is_callable($this->{$method})) {
return call_user_func_array($this->{$method}, $arguments);
} else {
throw new Exception("致命错误:调用未定义的方法 stdObject::{$method}()");
}
}
}
// 用法。
$obj = new stdObject();
$obj->name = "Nick";
$obj->surname = "Doe";
$obj->age = 20;
$obj->adresse = null;
$obj->getInfo = function($stdObject) { // $stdObject 指向此对象 (stdObject)。
echo $stdObject->name . " " . $stdObject->surname . " have " . $stdObject->age . " yrs old. And live in " . $stdObject->adresse;
};
$func = "setAge";
$obj->{$func} = function($stdObject, $age) { // $age 是调用此方法时传递的第一个参数。
$stdObject->age = $age;
};
$obj->setAge(24); // 参数值 24 传递给方法 'setAge()' 中的 $age 参数。
// 创建动态方法。这里我动态生成 getter 和 setter
// 注意:方法名称区分大小写。
foreach ($obj as $func_name => $value) {
if (!$value instanceOf Closure) {
$obj->{"set" . ucfirst($func_name)} = function($stdObject, $value) use ($func_name) { // 注意:您还可以使用关键字 'use' 绑定父变量。
$stdObject->{$func_name} = $value;
};
$obj->{"get" . ucfirst($func_name)} = function($stdObject) use ($func_name) { // 注意:您还可以使用关键字 'use' 绑定父变量。
return $stdObject->{$func_name};
};
}
}
$obj->setName("John");
$obj->setAdresse("Boston");
$obj->getInfo();
?>
<!--示例展示如何将数组转换为 stdClass 对象以及如何访问其值以进行显示-->
<?php
$num = array("Garha","sitamarhi","canada","patna"); // 创建一个数组
$obj = (object)$num; // 将数组更改为 stdClass 对象
echo "<pre>";
print_r($obj); // 通过数组转换创建的 stdClass 对象
$newobj = new stdClass();// 创建一个新的
$newobj->name = "India";
$newobj->work = "Development";
$newobj->address="patna";
$new = (array)$newobj;// 将 stdClass 转换为数组
echo "<pre>";
print_r($new); // 打印新对象
## 如何处理关联数组
$test = [Details=>['name','roll number','college','mobile'],values=>['Naman Kumar','100790310868','Pune college','9988707202']];
$val = json_decode(json_encode($test),false);// 将数组转换为 stdClass 对象
echo "<pre>";
print_r($val);
echo ((is_array($val) == true ? 1 : 0 ) == 1 ? "array" : "not an array" )."</br>"; // 检查它是否为数组
echo ((is_object($val) == true ? 1 : 0 ) == 1 ? "object" : "not an object" );// 检查它是否为对象
?>
你还记得一些 JavaScript 实现吗?
// var timestamp = (new Date).getTime();
现在可以使用 PHP 5.4.*;
<?php
类 Foo
{
public $a = "I'm a!";
public $b = "I'm b!";
public $c;
public function getB() {
return $this->b;
}
public function setC($c) {
$this->c = $c;
return $this;
}
public function getC() {
return $this->c;
}
}
print (new Foo)->a; // I'm a!
print (new Foo)->getB(); // I'm b!
?>
或者
<?php
// $_GET["c"] = "I'm c!";
print (new Foo)
->setC($_GET["c"])
->getC(); // I'm c!
?>
您可以使用类似以下方法创建[递归]对象
<?php
$literalObjectDeclared = (object) array(
'foo' => (object) array(
'bar' => 'baz',
'pax' => 'vax'
),
'moo' => 'ui'
);
print $literalObjectDeclared->foo->bar; // 输出 "baz"!
?>