3v4l.org

run code in 300+ PHP versions simultaneously
<?php function sanitize_term($data) { return $data; } #[AllowDynamicProperties] class WP_Term { public $term_id; public $name = ''; public $slug = ''; public $term_group = ''; public $term_taxonomy_id = 0; public $taxonomy = ''; public $description = ''; public $parent = 0; public $count = 0; public $filter = 'raw'; // public $data; // public $object_id; // // Added by wp_tag_cloud(). // public $id; // public $link = ''; // // Added by _make_cat_compat(). // public $cat_ID; // public $category_count; // public $category_description; // public $cat_name; // public $category_nicename; // public $category_parent; public function to_array() { return get_object_vars( $this ); } public function __get( $name ) { switch ( $name ) { case 'data': $data = new stdClass(); // db columns for the terms and term_taxonomy tables. $columns = array( 'term_id', 'name', 'slug', 'term_group', 'term_taxonomy_id', 'taxonomy', 'description', 'parent', 'count' ); foreach ( $columns as $column ) { $data->{$column} = isset( $this->{$column} ) ? $this->{$column} : null; } // adds the 'filter' field. return sanitize_term( $data, $data->taxonomy, 'raw' ); }; } } class Tester { private $term; private $dyanmic_properties = array( 'data', 'link', 'unknown'); public function __construct($term) { $this->term = $term; } public function test() { $this->test_isset('before'); $this->test_get(); $this->test_set(); $this->test_isset('after'); $this->test_unset(); $this->dump_to_array(); } private function test_get() { $term_data = (array) $this->term->data; } private function test_isset($message) { echo "\nTesting isset() $message set/get..\n"; foreach ($this->dyanmic_properties as $prop) { printf( "\tWP_Term::$%s: %s\n", $prop, isset($this->term->$prop) ? 'True' : 'False' ); } } private function test_set() { $this->term->unknown = 'unknown dynamic property'; $this->term->link = 'https://example.com/'; } private function test_unset() { unset($this->term->link); printf( "\nTesting unset(): Did WP_Term::\$link unset? \n%s\n", isset( $this->term->link) ? 'No' : 'Yes' ); } private function dump_to_array() { $via_to_array = $this->term->to_array(); $via_to_array_props = array_keys($via_to_array); $via_typecast = (array) $this->term; $via_typecast_props = array_keys($via_typecast); $diff1 = array_diff($via_to_array_props, $via_typecast_props); $diff2 = array_diff($via_typecast_props, $via_to_array_props); echo "\n\nAre the results the same between WP_Term::to_array() and(array) \$term?\n"; if (empty($diff1) && empty($diff2)) { echo "Yes\n"; } else { echo "No\n"; if (! empty($diff1)) { echo "\nWP_Term::to_array() vs (array) \$term\n"; var_dump($diff1); } if (! empty($diff2)) { echo "\n(array) \$term vs WP_Term::to_array()\n"; var_dump($diff2); } } } } (new Tester( new WP_Term() ) )->test();

Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).

VersionSystem time (s)User time (s)Memory (MiB)
8.4.20.0170.00321.32
8.4.10.0090.00019.33
8.3.150.0080.01216.66
8.3.140.0120.00616.61
8.3.130.0030.00618.66
8.3.120.0110.00020.90
8.3.110.0060.00318.51
8.3.100.0480.00037.54
8.3.90.0350.01337.54
8.3.80.0370.01237.54
8.3.70.0420.00837.54
8.3.60.0340.01537.54
8.3.50.0420.00337.54
8.3.40.0290.00937.54
8.3.30.0230.01037.54
8.3.20.0310.00437.54
8.3.10.0160.00337.54
8.3.00.0430.00337.54
8.2.270.0040.00417.03
8.2.260.0000.00818.61
8.2.250.0090.00917.48
8.2.240.0090.00017.36
8.2.230.0030.00620.94
8.2.220.0300.00437.54
8.2.210.0200.01237.54
8.2.200.0380.00337.54
8.2.190.0400.00837.54
8.2.180.0440.00637.54
8.2.170.0350.01037.54
8.2.160.0330.01037.54
8.2.150.0360.00937.54
8.2.140.0310.01337.54
8.2.130.0280.00837.54
8.2.120.0330.01137.54
8.2.110.0360.01237.54
8.2.100.0260.01237.54
8.2.90.0330.00437.54
8.2.80.0260.00937.54
8.2.70.0240.01437.54
8.2.60.0400.00737.54
8.2.50.0390.00437.54
8.2.40.0250.01637.54
8.2.30.0420.00337.54
8.2.20.0290.00737.54
8.2.10.0220.00337.54
8.2.00.0350.00737.54
8.1.310.0040.01117.88
8.1.300.0100.00616.02
8.1.290.0280.01537.54
8.1.280.0430.00037.54
8.1.270.0310.01237.54
8.1.260.0350.00337.54
8.1.250.0200.01037.54
8.1.240.0190.00237.54
8.1.230.0330.00737.54
8.1.220.0130.00737.54
8.1.210.0320.00637.54
8.1.200.0350.00337.54
8.1.190.0180.01837.54
8.1.180.0270.01037.54
8.1.170.0320.00637.54
8.1.160.0290.00937.54
8.1.150.0320.00637.54
8.1.140.0320.00637.54
8.1.130.0350.00337.54
8.1.120.0370.00437.54
8.1.110.0500.00437.54
8.1.100.0280.00437.54
8.1.90.0270.00537.54
8.1.80.0310.00737.54
8.1.70.0270.01237.54
8.1.60.0350.00637.54
8.1.50.0340.01037.54
8.1.40.0300.00737.54
8.1.30.0160.00337.54
8.1.20.0240.00537.54
8.1.10.0190.00037.54
8.1.00.0400.00037.54
8.0.300.0300.00737.54
8.0.290.0290.00837.54
8.0.280.0320.00637.54
8.0.270.0300.01337.54
8.0.260.0310.00837.54
8.0.250.0260.00937.54
8.0.240.0360.00737.54
8.0.230.0280.01137.54
8.0.220.0370.00337.54
8.0.210.0340.00637.54
8.0.200.0360.00337.54
8.0.190.0310.00337.54
8.0.180.0280.00937.54
8.0.170.0300.01137.54
8.0.160.0330.00037.54
8.0.150.0180.01537.54
8.0.140.0400.00337.54
8.0.130.0310.00337.54
8.0.120.0170.02137.54
8.0.110.0320.01037.54
8.0.100.0300.01337.54
8.0.90.0310.01237.54
8.0.80.0350.00737.54
8.0.70.0370.00337.54
8.0.60.0320.00637.54
8.0.50.0200.01337.54
8.0.30.0270.00937.54
8.0.20.0320.00537.54
8.0.10.0310.00637.54
8.0.00.0260.01337.54
7.4.330.0310.00637.54
7.4.320.0300.00837.54
7.4.300.0380.00037.54
7.4.290.0390.00437.54
7.4.280.0320.00337.54
7.4.270.0460.00337.54
7.4.260.0280.01337.54
7.4.250.0220.01437.54
7.4.240.0260.00037.54
7.4.230.0280.00937.54
7.4.220.0240.00937.54
7.4.210.0180.01137.54
7.4.200.0200.00437.54
7.4.190.0240.00737.54
7.4.180.0130.00437.54
7.4.160.0170.00037.54
7.4.150.0300.00337.54
7.4.140.0160.00637.54
7.4.130.0140.01437.54
7.4.120.0280.00537.54
7.4.110.0300.00337.54
7.4.100.0290.00937.54
7.4.90.0300.00737.54
7.4.80.0320.00737.54
7.4.70.0290.00437.54
7.4.60.0130.00737.54
7.4.50.0160.00337.54
7.4.40.0160.01237.54
7.4.30.0230.01037.54
7.4.20.0230.00637.54
7.4.10.0180.01137.54
7.4.00.0280.00637.54
7.3.330.0250.00437.54
7.3.320.0250.00637.54
7.3.310.0260.01037.54
7.3.300.0190.01037.54
7.3.290.0360.00337.54
7.3.280.0290.00737.54
7.3.270.0320.00337.54
7.3.260.0280.00737.54
7.3.250.0280.00737.54
7.3.240.0230.00937.54
7.3.230.0190.01037.54
7.3.220.0270.00337.54
7.3.210.0200.01437.54
7.3.200.0280.01037.54
7.3.190.0240.00637.54
7.3.180.0220.01337.54
7.3.170.0320.00637.54
7.3.160.0420.00437.54
7.3.150.0320.00637.54
7.3.140.0320.00437.54
7.3.130.0280.00837.54
7.3.120.0120.00437.54
7.3.110.0200.00337.54
7.3.100.0100.00737.54
7.3.90.0100.00637.54
7.3.80.0300.00037.54
7.3.70.0230.01237.54
7.3.60.0260.00937.54
7.3.50.0260.00337.54
7.3.40.0250.00037.54
7.3.30.0180.00037.54
7.3.20.0170.00237.54
7.3.10.0110.00637.54
7.3.00.0280.00637.54
7.2.340.0270.00937.54
7.2.330.0330.00637.54
7.2.320.0290.00337.54
7.2.310.0280.00737.54
7.2.300.0310.00637.54
7.2.290.0270.00537.54
7.2.280.0340.00037.54
7.2.270.0250.00637.54
7.2.260.0270.00837.54
7.2.250.0300.00437.54
7.2.240.0260.00337.54
7.2.230.0240.01037.54
7.2.220.0240.00537.54
7.2.210.0210.00837.54
7.2.200.0180.00337.54
7.2.190.0250.00437.54
7.2.180.0270.00337.54
7.2.170.0200.01037.54
7.2.160.0280.00737.54
7.2.150.0320.00637.54
7.2.140.0290.00637.54
7.2.130.0360.00737.54
7.2.120.0220.00937.54
7.2.110.0350.00037.54
7.2.100.0230.00637.54
7.2.90.0310.00437.54
7.2.80.0190.01037.54
7.2.70.0230.00837.54
7.2.60.0250.01137.54
7.2.50.0290.00537.54
7.2.40.0210.01037.54
7.2.30.0310.01237.54
7.2.20.0400.00337.54
7.2.10.0310.00437.54
7.2.00.0260.00937.54
7.1.330.0260.00637.54
7.1.320.0230.01037.54
7.1.310.0310.00337.54
7.1.300.0170.01437.54
7.1.290.0270.00637.54
7.1.280.0310.00437.54
7.1.270.0330.00037.54
7.1.260.0210.00637.54
7.1.250.0160.01037.54
7.1.240.0250.00637.54
7.1.230.0080.00837.54
7.1.220.0230.00337.54
7.1.210.0210.01037.54
7.1.200.0250.01137.54
7.1.190.0200.01237.54
7.1.180.0310.00037.54
7.1.170.0240.00937.54
7.1.160.0280.00737.54
7.1.150.0310.00337.54
7.1.140.0360.00037.54
7.1.130.0220.01337.54
7.1.120.0260.00637.54
7.1.110.0190.01337.54
7.1.100.0170.01137.54
7.1.90.0180.00937.54
7.1.80.0200.01037.54
7.1.70.0210.01337.54
7.1.60.0230.01337.54
7.1.50.0170.00937.54
7.1.40.0270.00737.54
7.1.30.0250.00737.54
7.1.20.0270.00737.54
7.1.10.0290.00337.54
7.1.00.0240.00937.54
7.0.330.0260.00837.54
7.0.320.0280.00437.54
7.0.310.0240.00637.54
7.0.300.0260.00737.54
7.0.290.0280.00337.54
7.0.280.0230.01037.54
7.0.270.0240.01037.54
7.0.260.0300.00337.54
7.0.250.0330.00437.54
7.0.240.0240.01037.54
7.0.230.0280.00637.54
7.0.220.0310.00637.54
7.0.210.0180.00937.54
7.0.200.0120.00437.54
7.0.190.0170.00037.54
7.0.180.0120.00337.54
7.0.170.0100.00537.54
7.0.160.0140.00037.54
7.0.150.0100.00637.54
7.0.140.0110.00437.54
7.0.130.0150.00037.54
7.0.120.0160.00037.54
7.0.110.0220.00437.54
7.0.100.0220.00337.54
7.0.90.0210.00737.54
7.0.80.0170.00837.54
7.0.70.0240.00037.54
7.0.60.0140.00037.54
7.0.50.0190.00637.54
7.0.40.0300.00337.54
7.0.30.0190.01337.54
7.0.20.0330.00037.54
7.0.10.0220.00937.54
7.0.00.0180.01237.54
5.6.400.0200.01237.54
5.6.390.0180.01437.54
5.6.380.0270.00437.54
5.6.370.0280.00437.54
5.6.360.0290.00337.54
5.6.350.0290.00337.54
5.6.340.0310.00637.54
5.6.330.0250.00337.54
5.6.320.0250.00337.54
5.6.310.0240.00937.54
5.6.300.0220.01137.54
5.6.290.0320.00637.54
5.6.280.0220.00937.54
5.6.270.0200.01037.54
5.6.260.0280.00737.54
5.6.250.0160.00437.54
5.6.240.0160.00337.54
5.6.230.0140.00237.54
5.6.220.0100.00737.54
5.6.210.0100.00737.54
5.6.200.0170.00037.54
5.6.190.0110.00637.54
5.6.180.0150.00337.54
5.6.170.0090.00937.54
5.6.160.0130.00537.54
5.6.150.0110.00837.54
5.6.140.0150.00337.54
5.6.130.0120.00637.54
5.6.120.0090.00937.54
5.6.110.0140.00437.54
5.6.100.0130.00337.54
5.6.90.0110.00737.54
5.6.80.0130.00437.54
5.6.70.0150.00437.54
5.6.60.0180.00037.54
5.6.50.0100.00637.54
5.6.40.0130.00337.54
5.6.30.0150.00337.54
5.6.20.0180.00037.54
5.6.10.0130.00637.54
5.6.00.0160.00037.54
5.5.380.0200.00037.54
5.5.370.0190.00037.54
5.5.360.0140.00337.54
5.5.350.0110.00637.54
5.5.340.0170.00037.54
5.5.330.0140.00437.54
5.5.320.0170.00037.54
5.5.310.0130.00337.54
5.5.300.0110.00637.54
5.5.290.0130.00337.54
5.5.280.0080.00837.54
5.5.270.0130.00537.54
5.5.260.0160.00037.54
5.5.250.0160.00037.54
5.5.240.0080.00837.54
5.5.230.0130.00337.54
5.5.220.0170.00037.54
5.5.210.0100.00637.54
5.5.200.0080.00837.54
5.5.190.0140.00337.54
5.5.180.0150.00437.54
5.5.170.0180.00037.54
5.5.160.0130.00537.54
5.5.150.0160.00037.54
5.5.140.0100.00537.54
5.5.130.0130.00437.54
5.5.120.0130.00337.54
5.5.110.0080.00837.54
5.5.100.0110.00537.54
5.5.90.0170.00037.54
5.5.80.0160.00037.54
5.5.70.0160.00537.54
5.5.60.0190.00437.54
5.5.50.0120.00437.54
5.5.40.0120.00337.54
5.5.30.0120.00337.54
5.5.20.0090.00637.54
5.5.10.0100.00637.54
5.5.00.0100.00737.54
5.4.450.0100.00337.54
5.4.440.0080.00437.54
5.4.430.0100.00537.54
5.4.420.0060.00637.54
5.4.410.0090.00437.54
5.4.400.0120.00037.54
5.4.390.0100.00337.54
5.4.380.0070.00737.54
5.4.370.0140.00037.54
5.4.360.0060.00637.54
5.4.350.0130.00037.54
5.4.340.0000.01237.54
5.4.330.0140.00037.54
5.4.320.0100.00337.54
5.4.310.0120.00037.54
5.4.300.0120.00037.54
5.4.290.0090.00537.54
5.4.280.0080.00637.54
5.4.270.0130.00037.54
5.4.260.0090.00337.54
5.4.250.0060.00637.54
5.4.240.0070.00737.54
5.4.230.0100.00337.54
5.4.220.0130.00037.54
5.4.210.0110.00037.54
5.4.200.0060.00637.54
5.4.190.0080.00337.54
5.4.180.0110.00037.54
5.4.170.0070.00337.54
5.4.160.0110.00037.54
5.4.150.0040.00737.54
5.4.140.0110.00037.54
5.4.130.0110.00037.54
5.4.120.0070.00737.54
5.4.110.0120.00037.54
5.4.100.0090.00237.54
5.4.90.0070.00437.54
5.4.80.0070.00437.54
5.4.70.0050.00537.54
5.4.60.0090.00337.54
5.4.50.0080.00337.54
5.4.40.0070.00437.54
5.4.30.0060.00637.54
5.4.20.0070.00437.54
5.4.10.0040.00737.54
5.4.00.0080.00337.54
5.3.290.0070.00437.54
5.3.280.0040.00837.54
5.3.270.0070.00437.54
5.3.260.0050.00537.54
5.3.250.0080.00437.54
5.3.240.0080.00337.54
5.3.230.0090.00237.54
5.3.220.0070.00437.54
5.3.210.0110.00037.54
5.3.200.0090.00237.54
5.3.190.0080.00337.54
5.3.180.0050.00537.54
5.3.170.0060.00637.54
5.3.160.0060.00637.54
5.3.150.0140.00037.54
5.3.140.0070.00437.54
5.3.130.0060.00637.54
5.3.120.0110.00037.54
5.3.110.0190.00537.54
5.3.100.0230.00037.54
5.3.90.0040.01337.54
5.3.80.0120.00537.54
5.3.70.0120.00037.54
5.3.60.0120.00037.54
5.3.50.0090.00337.54
5.3.40.0160.00837.54
5.3.30.0140.00037.54
5.3.20.0090.00337.54
5.3.10.0140.00337.54
5.3.00.0110.00037.54
5.2.170.0000.01037.54
5.2.160.0040.00437.54
5.2.150.0090.00037.54
5.2.140.0080.00037.54
5.2.130.0080.00037.54
5.2.120.0040.00437.54
5.2.110.0080.00037.54
5.2.100.0060.00337.54
5.2.90.0050.00537.54
5.2.80.0050.00537.54
5.2.70.0050.00537.54
5.2.60.0090.00037.54
5.2.50.0090.00037.54
5.2.40.0090.00237.54
5.2.30.0060.00637.54
5.2.20.0000.00837.54
5.2.10.0060.00637.54
5.2.00.0080.00037.54
5.1.60.0090.00237.54
5.1.50.0130.00337.54
5.1.40.0000.00837.54
5.1.30.0120.00337.54
5.1.20.0080.00037.54
5.1.10.0070.00037.54
5.1.00.0080.00837.54
5.0.50.0110.00437.54
5.0.40.0050.00237.54
5.0.30.0070.00737.54
5.0.20.0140.00037.54
5.0.10.0040.00237.54
5.0.00.0000.01437.54
4.4.90.0090.00037.54
4.4.80.0000.00437.54
4.4.70.0000.00437.54
4.4.60.0090.00037.54
4.4.50.0070.00037.54
4.4.40.0050.00337.54
4.4.30.0000.00437.54
4.4.20.0000.00437.54
4.4.10.0000.00437.54
4.4.00.0000.00437.54
4.3.110.0000.00437.54
4.3.100.0000.00437.54
4.3.90.0000.00337.54
4.3.80.0040.00037.54
4.3.70.0040.00037.54
4.3.60.0000.00537.54
4.3.50.0000.00437.54
4.3.40.0040.00037.54
4.3.30.0000.00337.54
4.3.20.0050.00037.54
4.3.10.0060.00037.54
4.3.00.0060.00037.54

preferences:
31.67 ms | 402 KiB | 5 Q