Site Activity
-
admin wrote a new post, Create Favicon With Imagick 1 month ago
[php]
?php
try
{
/*** set the image name ***/
$img = ‘test.jpg’;/*** read the image into imagick ***/
$Imagick = new Imagick($img);/*** crop and […]
-
admin wrote a new post, Degrees To Radians 1 month ago
[php]
/*
* @convert degrees to radians
* @param float $degrees
* @return float
*/
function DegreeToRadian($degrees)
{
/*** do the math ***/
return $degrees * pi() / 180;
}[/php]
-
admin wrote a new post, Radians To Degrees 1 month ago
[php]
/*
* @convert radians to degrees
* @param float $radians
* @return float
*/
function radiansToDegrees($radians)
{
return $radians * 180 / pi();
}
[/php] -
admin wrote a new post, Remove all non alpha numeric characters except a space 1 month ago
[php]
?php
/**
* Remove all non alpha numeric characters except a space
* @param string $string The string to cleanse
* @return string
*/
function alphanumericAndSpace( […] -
admin wrote a new post, objectToArray 1 month ago
?php
/*** a complex object ***/
$obj = new stdClass;
$obj-foo = new stdClass;
$obj-foo-baz = 'baz';
$obj-bar = 'bar';/**
*
* Convert an object to an array
*
* […] -
admin wrote a new post, auto-pligg 3 months, 2 weeks ago
auto-pligg
-
admin wrote a new post, translate with bing 3 months, 3 weeks ago
[code]
echo translateBing($text,$fromLang,$toLang);
function translateBing($text, $fromLang, $toLang) {
$res = '';
$step = 10000; //10240;
for ($i = 0; $i < strlen($text); $i += $step) {
$subtext = […] -
admin wrote a new post, Non sai cosa scrivere ? 3 months, 3 weeks ago
non sai cosa scrivere ? non riesci a scrivere l’articolo al giorno ?
usiamo i database di articoli […] -
admin wrote a new post, Professioni informatiche 4 months ago
1) Il Project Manager è una persona che pensa che 9 donne possono fare un bambino in 1 mese.
2) Lo Sviluppatore è la persona che pensa che ci vorranno 18 mesi per fare un bambino
3) Il Coordinatore locale è uno […]