Skip to content

Instantly share code, notes, and snippets.

@caoglish
caoglish / sample.php
Last active August 3, 2017 00:09
__get and property
<?php
class sample
{
public function __get($p)
{
$list=["name"=>"magic"];
return $list[$p];
}
}
@caoglish
caoglish / php.ini
Last active February 5, 2024 23:51
PHP8.3 php.ini
[PHP]
;;;;;;;;;;;;;;;;;;;
; About php.ini ;
;;;;;;;;;;;;;;;;;;;
; PHP's initialization file, generally called php.ini, is responsible for
; configuring many of the aspects of PHP's behavior.
; PHP attempts to find and load this configuration from a number of locations.
; The following is a summary of its search order: