PHP 8.5.0 Alpha 1 available for testing

Voting

: max(zero, nine)?
(Example: nine)

The Note You're Voting On

ajim1417 at gmail dot com
15 years ago
I wrote a simple function that can draws an arc counter-clockwisekly. Here it is :

<?php

function imagearcCC(&$im, $cx, $cy, $w, $h, $s, $e, $c) {
$start = 360 - $e;
$end = 360 - $s;
return
imagearc($im, $cx, $cy, $w, $h, $start, $end, $c);
}

?>

The params of this function is exactly the same as the usual imagearc function.

<< Back to user notes page

To Top