(object) array

Posted rsapaper

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(object) array相关的知识,希望对你有一定的参考价值。

 1 <?php
 2 $current_language = (object)array
 3 (
 4 ‘name‘            => ‘火星文‘,
 5 ‘timezone‘        => ‘Asia/Tokyo‘,
 6 ‘author_name‘    => ‘who‘,
 7 ‘is_beta‘        => FALSE
 8 );
 9 
10 var_dump($current_language);
11 echo $current_language->name;
12 die();
1 D:\wamp64\www\wdb.php:10:
2 object(stdClass)[1]
3   public ‘name‘ => string ‘火星文‘ (length=9)
4   public ‘timezone‘ => string ‘Asia/Tokyo‘ (length=10)
5   public ‘author_name‘ => string ‘who‘ (length=3)
6   public ‘is_beta‘ => boolean false
7 火星文

 

以上是关于(object) array的主要内容,如果未能解决你的问题,请参考以下文章

js代码片段: utils/lcoalStorage/cookie

[TIA PORTAL][CONVERT] Convert Char Array to DInt...DInt to Char Array..Useful and easy function(代码片段

Discuz代码片段

javascript常用代码片段

几个有用的JavaScript/jQuery代码片段(转)

Vue报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object 的解决方法(代码片段