Main Menu


Warning: Parameter 1 to modMainMenuHelper::buildXML() expected to be a reference, value given in /home/designdd/domains/design-dd.com/public_html/blog/libraries/joomla/cache/handler/callback.php on line 100

บทความดีๆ


Warning: Parameter 1 to modMainMenuHelper::buildXML() expected to be a reference, value given in /home/designdd/domains/design-dd.com/public_html/blog/libraries/joomla/cache/handler/callback.php on line 100


Match
lcg_value() PDF Print E-mail
Written by รับทำเว็บไซต์   
Friday, 14 May 2010 14:29
function:lcg_value ();
return type:float
content:ใช้สุ่มเลขระหว่าง 0 ถึง 1 โดยการสุ่มแต่ละครั้งจะไม่มีการได้ค่าที่ซ้ำกัน
example:echo lcg_value();
 
rand() PDF Print E-mail
Written by รับทำเว็บไซต์   
Friday, 14 May 2010 14:29
function:rand ( min, max );
return type:float
content:ใช้สุ่มเลข ระหว่าง 0 ถึง 1 ( หรือระหว่าง min ถึง max )
example:echo rand();
echo rand( 1, 50 );
 
deg2rad() PDF Print E-mail
Written by รับทำเว็บไซต์   
Friday, 14 May 2010 14:29
function:deg2rad ( number );
return type:float
content:ใช้แปลงมุมองศาดีกรี เป็นองศาเรเดียน
example:echo deg2rad ( 45 );
 
rad2deg() PDF Print E-mail
Written by รับทำเว็บไซต์   
Friday, 14 May 2010 14:29
function:rad2deg ( number );
return type:float
content:ใช้แปลงมุมองศาเรเดียน เป็นองศาดีกรี
example:echo rad2deg ( M_PI_4 );
 
atan2() PDF Print E-mail
Written by รับทำเว็บไซต์   
Friday, 14 May 2010 14:28
function:atan2 ( number1, number2 );
return type:float
content:ใช้หาค่ามุมของ atan2 ( number1 / number2 )
example:echo atan2 ( 3, 7 );
 
atan() PDF Print E-mail
Written by รับทำเว็บไซต์   
Friday, 14 May 2010 14:28
function:atan ( number );
return type:float
content:ใช้หาค่ามุมกลับของ tangent
example:echo atan ( -1 );
 
tanh() PDF Print E-mail
Written by รับทำเว็บไซต์   
Friday, 14 May 2010 14:28
function:tanh ( number );
return type:float
content:ใช้หาค่ามุมของ hyperbolic tangent
example:echo tanh ( -0.50 );
 
tan() PDF Print E-mail
Written by รับทำเว็บไซต์   
Friday, 14 May 2010 14:28
function:tan ( number );
return type:float
content:ใช้หาค่ามุมของ tangent ( มุม radian )
example:echo tan ( 1 );
 
acos() PDF Print E-mail
Written by รับทำเว็บไซต์   
Friday, 14 May 2010 14:27
function:acos ( number );
return type:float
content:ใช้หาค่ามุมกลับของ cosine
example:echo acos ( 0.75 );
 
cosh() PDF Print E-mail
Written by รับทำเว็บไซต์   
Friday, 14 May 2010 14:27
function:cosh ( number );
return type:float
content:ใช้หาค่ามุมของ hyperbolic cosine
example:echo cosh ( 0 );
 
cos() PDF Print E-mail
Written by รับทำเว็บไซต์   
Friday, 14 May 2010 14:27
function:cos ( number );
return type:float
content:ใช้หาค่ามุมของ cosine ( มุม radian )
example:echo cos ( 1 );
 
asin() PDF Print E-mail
Written by รับทำเว็บไซต์   
Friday, 14 May 2010 14:27
function:asin ( number );
return type:float
content:ใช้หาค่ามุมกลับของ sine
example:echo asin ( 0.25 );
 
sinh() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:44
function:sinh ( number );
return type:float
content:ใช้หาค่ามุมของ hyperbolic sine
example:echo sinh ( 0 );
 
sin() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:43
function:sin ( number );
return type:float
content:ใช้หาค่ามุมของ sine ( มุม radian )
example:echo sin ( 1 );
 
log10() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:43
function:log10 ( number );
return type:float
content:ใช้หาค่า ล็อกการิทึมฐานสิบ
example:echo log10 ( 1 );
 
log() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:42
function:log ( number );
return type:float
content:ใช้หาค่า ล็อกการิทึมธรรมชาติ
example:echo log ( 1 );
 
max() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:42
function:max ( number1, number2, .., numbern );
return type:string
content:ใช้หาค่าที่มากที่สุดในจากตัวเลขที่กำหนด
example:echo max ( "A", "B", "b", "a" );
comment:ถ้าเป็นตัวอักษรจะเทียบตามรหัส ascii
 
max ( array ); PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:42
function:max ( array_number );
return type:string
content:ใช้หาค่าที่มากที่สุดใน array
example:$arr = array ( "A", "B", "b", "a" );
echo max ( $arr );

comment:ถ้าเป็นตัวอักษรจะเทียบตามรหัส ascii
 
min() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:42
function:min ( number1, number2, .., numbern );
return type:string
content:ใช้หาค่าที่น้อยที่สุดในจากตัวเลขที่กำหนด
example:echo min ( "A", "B", "b", "a" );
comment:ถ้าเป็นตัวอักษรจะเทียบตามรหัส ascii
 
min( array ) PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:41
function:min ( array_number );
return type:string
content:ใช้หาค่าที่น้อยที่สุดใน array
example:$arr = array ( "A", "B", "b", "a" );
echo min ( $arr );

comment:ถ้าเป็นตัวอักษรจะเทียบตามรหัส ascii
 
floor() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:41
function:floor ( number );
return type:int
content:ใช้ปัดเศษทศนิยมให้มีค่าน้อยลง
example:echo floor ( 2.9 );
 
ceil() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:41
function:ceil ( number );
return type:int
content:ใช้ปัดเศษทศนิยมให้มีค่ามากขึ้น
example:echo ceil ( 2.1 );
 
round() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:40
function:round ( number );
return type:double
content:ใช้ปัดเศษทศนิยม ถ้าน้อยกว่า 4 จะปัดลง และถ้ามากกว่าหรือเท่ากับ 5 จะปัดขึ้น
example:echo round ( 2.4 );
 
fmod() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:40
function:fmod ( number1, number2 );
return type:float
content:ใช้หาค่าเศษที่เหลือจากการหาร
มีผลเหมือนกับ number1 / number2

example:echo fmod ( 5, 3 );
 
exp() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:40
function:exp ( number );
return type:float
content:ใช้หาค่า e ยกกำลัง number
example:echo exp ( 3 );
 
pow() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:40
function:pow ( base, exp );
return type:float
content:ใช้หาค่ายกกำลัง
example:echo pow ( 2, 3 );
 
sqrt() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:39
function:sqrt ( number );
return type:float
content:ใช้หาค่ารากที่ 2
example:echo sqrt ( 100 );
 
abs() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:39
function:abs ( number );
return type:int
content:ใช้หาค่าสัมบูรณ์
example:echo abs ( -10.5 );
 
pi() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:37
function:pi ();
return type:double
content:คืนค่า pi คือ 3.14159265359
example:echo pi();
 
is_infinite() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:36
function:is_infinite ( number );
return type:boolean
content:ใช้ตรวจสอบว่าข้อมูลมีขอบเขตไม่จำกัดใช่หรือไม่
example:if ( is_infinite ( log(0) ) )
{
     echo "รับทำเว็บไซต์";
}
 
is_finite() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:30
function:is_finite ( number );
return type:boolean
content:ใช้ตรวจสอบว่าข้อมูลมีขอบเขตจำกัดใช่หรือไม่
example:if ( is_finite ( log(0) ) )
{
echo "รับ ทำ เว็บ";
}
 
is_nan() PDF Print E-mail
Written by นักออกแบบเว็บ   
Sunday, 09 May 2010 17:29
function:is_nan ( number );
return type:boolean
content:ใช้ตรวจสอบว่าข้อมูลไม่เป็นชนิดตัวเลขใช่หรือไม่
( nan ย่อมาจาก not a number )

example:if ( is_nan ( 100 ) )
{
echo "not a number";
}
 


เราแบ่งปันสิ่งดีๆ ให้กัน

ตัวอย่างหนังใหม่

Warning: fopen(bots.txt) [function.fopen]: failed to open stream: Permission denied in /home/designdd/domains/design-dd.com/public_html/blog/bot.php on line 44

Warning: fread() expects parameter 1 to be resource, boolean given in /home/designdd/domains/design-dd.com/public_html/blog/bot.php on line 49

Warning: fclose() expects parameter 1 to be resource, boolean given in /home/designdd/domains/design-dd.com/public_html/blog/bot.php on line 50