Rounded PHP 1.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Rounded PHP 1.1 (Default branch)
# 1  
Old 01-02-2008
Rounded PHP 1.1 (Default branch)

Rounded PHP is an API for creating perfect anti-aliased rounded corner images on the fly. Using the internal GD library in PHP 5+ and a simple set of query variables, a developer will have little need to store many different rounded corner images to use around a Web site. License: GNU General Public License v2 Changes:
Full transparency support was introduced for GIF and 24-bit PNG image formats. Anti-aliasing of rounded corners can now be toggled on or off.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Mp3 duration rounded up to nearest seconds

Hi, can anyone provide more details to why an audio file's duration is seen as 10 seconds on unix and 9 seconds on windows Read about windows MFT rounding down to nearest seconds, is there any article on unix rounding up? thanks in advance (1 Reply)
Discussion started by: wsps1750
1 Replies
Login or Register to Ask a Question
NSAPI_REQUEST_HEADERS(3)						 1						  NSAPI_REQUEST_HEADERS(3)

nsapi_request_headers - Fetch all HTTP request headers

SYNOPSIS
array nsapi_request_headers (void ) DESCRIPTION
nsapi_request_headers(3) gets all the HTTP headers in the current request. This is only supported when PHP runs as a NSAPI module. Note Prior to PHP 4.3.3, getallheaders(3) was only available for the Apache servers. After PHP 4.3.3, getallheaders(3) is an alias for nsapi_request_headers(3) if you use the NSAPI module. Note You can also get at the value of the common CGI variables by reading them from the $_SERVER superglobal, which works whether or not you are using PHP as a NSAPI module. RETURN VALUES
Returns an associative array with all the HTTP headers. EXAMPLES
Example #1 nsapi_request_headers(3) example <?php $headers = nsapi_request_headers(); foreach ($headers as $header => $value) { echo "$header: $value <br /> "; } ?> PHP Documentation Group NSAPI_REQUEST_HEADERS(3)