What do you want to save?
Add Code snippet
New code examples in category PHP
-
-
Phoenix Logan 2022-03-27 22:35:13
Dijkstra’s algorithm php
$INT_MAX = 0x7FFFFFFF; function MinimumDistance($distance, $shortestPathTreeSet, $verticesCount) { global $INT_MAX; $min = $INT_MAX; $minIndex = 0; for ($v = 0; $v < $verticesCount; ++$v) { if ($shortestPathTreeSet[$v] == false &&... Add solution -
Awgiedawgie 2022-03-27 22:35:12
get_declared_classes
<?php print_r(get_declared_classes()); ?> Add solution -
Awgiedawgie 2022-03-27 22:25:01
wordpress get_date
<?php echo get_the_date( 'l F j, Y' ); ?> Add solution -
-
Phoenix Logan 2022-03-27 21:05:06
laravel schedule run
// Settng Cron in AWS // type command "crontab -e" and paste the below formatted line * * * * * /pathToYourPhp /pathToArtisan/artisan schedule:run >> /dev/null 2>&1 // for example * * * * * /usr/bin/php7.4 /var/www/html/testproject/... Add solution
Best helpers
Ranking is empty