Home
last modified time | relevance | path

Searched refs:elementDiff (Results 1 – 1 of 1) sorted by relevance

/php-src/sapi/phpdbg/
H A Dphpdbg_watch.c161 int32_t elementDiff; in phpdbg_print_watch_diff() local
190elementDiff = zend_hash_num_elements(HT_PTR_HT(oldPtr)) - zend_hash_num_elements(HT_PTR_HT(newPtr)… in phpdbg_print_watch_diff()
191 if (elementDiff > 0) { in phpdbg_print_watch_diff()
192 phpdbg_writeln("%d elements were removed from the array", (int) elementDiff); in phpdbg_print_watch_diff()
193 } else if (elementDiff < 0) { in phpdbg_print_watch_diff()
194 phpdbg_writeln("%d elements were added to the array", (int) -elementDiff); in phpdbg_print_watch_diff()

Completed in 13 milliseconds