|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-09-22 04:02 UTC] kexianbin at diyism dot com
[2015-01-05 22:14 UTC] danack@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: danack
[2015-01-05 22:14 UTC] danack@php.net
[2015-01-05 22:21 UTC] danack@php.net
-Status: Closed
+Status: Not a bug
[2015-01-05 22:21 UTC] danack@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 08 16:00:01 2025 UTC |
Description: ------------ In my mind, we phper can thoroughly throw away the concept of Object(class instance), we only need Array and Mode Class: All arrays in initial mode support any array function as it's method: <?php $array1->array_flip(this); ?> Use "->mode()" to validate the minimal data set, and then switch mode class: <?php $array1->mode('class1', $success); ?> Any mode class has no "construct()" in it, but has "validate()" to validate the minimal data set. The array in a mode still could use array function as its method, but after using any of them the array will be switched back into basic array mode, and we need to use "->mode('class1', $success);" to switch mode back. The radical thought is data-centric programming, we need seperate the data(array) and the activity(class method). We could modify php engine, to get rid of parts of OO(object oriented), and support Mode Class, we could call it MyPHP. For example: $array_man1 could be set into two modes:cls_normal_man and cls_crazy_man: <?php $array_man1->mode('cls_normal_man')->normal_method1()->mode('cls_crazy_man')->crazy_method1(); ?>