1 / 13

การทำงานกับเลขจำนวน ในภาษา php

การทำงานกับเลขจำนวน ในภาษา php. การเขียนเว็บเพจด้วยภาษา php ศูนย์คอมพิวเตอร์ โรงเรียนปลวกแดงพิทยาคม. ฟังก์ชันที่ใช้ตรวจสอบเลขจำนวน. bool is_int(mixed ตัวแปร ); ใช้สำหรับตรวจสอบตัวแปรว่าเป็นจำนวนเต็มหรือไม่ โดยจะให้ค่า TRUE ถ้าใช่และค่า FALSE ถ้าไม่ใช่. is_int.php. <?php

Download Presentation

การทำงานกับเลขจำนวน ในภาษา php

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. การทำงานกับเลขจำนวนในภาษา php การเขียนเว็บเพจด้วยภาษา php ศูนย์คอมพิวเตอร์ โรงเรียนปลวกแดงพิทยาคม

  2. ฟังก์ชันที่ใช้ตรวจสอบเลขจำนวนฟังก์ชันที่ใช้ตรวจสอบเลขจำนวน • bool is_int(mixed ตัวแปร); • ใช้สำหรับตรวจสอบตัวแปรว่าเป็นจำนวนเต็มหรือไม่ โดยจะให้ค่า TRUE ถ้าใช่และค่า FALSE ถ้าไม่ใช่

  3. is_int.php • <?php • $var1 = “8247”; • $var2 = 76; • if (is_int($var1)) • printf(“\$var1 คือตัวแปรชนิด integer <br>”); • else • printf(“\$var1 ไม่ใช่ตัวแปรชนิด integer <br>”); • if (is_int($var2)) • printf(“\$var2 คือตัวแปรชนิด integer <br>”); • else • printf(“\$var2 ไม่ใช่ตัวแปรชนิด integer <br>”); • ?>

  4. ฟังก์ชันis_float() • bool is_float(mixed ตัวแปร); • ใช้สำหรับตรวจสอบตัวแปรว่าเป็น floatหรือไม่ โดยจะให้ค่า TRUE ถ้าใช่และค่า FALSE ถ้าไม่ใช่

  5. ฟังก์ชันis_numeric() • bool is_numeric(mixed ตัวแปร); • ใช้ตรวจสอบว่าเป็นเลขจำนวนหรือเป็นสตริงตัวเลขหรือไม่ โดยจะให้ค่า TRUE ถ้าใช่และให้ค่า FALSE ถ้าไม่ใช่

  6. ฟังก์ชันที่ใช้แปลงชนิดข้อมูลฟังก์ชันที่ใช้แปลงชนิดข้อมูล • bool intval(mixed ตัวแปร); • ใช้แปลงค่าของตัวแปรที่ระบุไปเป็นค่าจำนวนเต็ม แต่ถ้าฟังก์ชันทำงานล้มเหลวจะให้ค่า 0 เสมอ แต่ถ้าเป็นอะเรย์ที่มีสมาชิกจะได้ค่า 1 เสมอ

  7. ฟังก์ชันที่ใช้แปลงชนิดข้อมูลฟังก์ชันที่ใช้แปลงชนิดข้อมูล • bool floatval(mixed ตัวแปร); • ใช้แปลงค่าของตัวแปรที่ระบุไปเป็นทศนิยม แต่ถ้าฟังก์ชันทำงานล้มเหลวจะให้ค่า 0 เสมอ แต่ถ้าเป็นอะเรย์ที่มีสมาชิกจะได้ค่า 1 เสมอ

  8. ฟังก์ชันที่ใช้ประมาณค่า/ปัดเศษฟังก์ชันที่ใช้ประมาณค่า/ปัดเศษ • float round(float เลข[,int ความแม่นยำ]); • หาค่าประมาณของเลขจำนวน โดยให้มีความแม่นยำตามที่กำหนด • ความแม่นยำหมายถึงจำนวนตัวเลขหลังจุดทศนิยม

  9. ฟังก์ชัน ceil (float เลข) • float ceil(float เลข); • ให้ค่าเป็นเลขจำนวนเต็มโดยการปัดเศษขึ้น ถึงแม้ว่าผลลัพธ์จะเป็นเลขจำนวนเต็ม แต่ชนิดข้อมูลของมันจะเป็น float

  10. ฟังก์ชัน floor (float เลข) • float floor(float เลข); • ให้ค่าเป็นเลขจำนวนเต็มโดยการปัดเศษลง ถึงแม้ว่าผลลัพธ์จะเป็นเลขจำนวนเต็ม แต่ชนิดข้อมูลของมันจะเป็น float

  11. ฟังก์ชันที่ใช้เปรียบเทียบค่าฟังก์ชันที่ใช้เปรียบเทียบค่า • mixed min(mixed เลข1,mixed เลข2[, mixed เลข3]); หรือ • mixed min (array อะเรย์ );

  12. min.php • <?php • printf(min(2,3,1,6,7)); • $arr = array(2,4,5); • printf(min($arr)); • ?> 1 2

  13. ฟังก์ชัน max • mixed max(mixed เลข1,mixed เลข2[, mixed เลข3]); หรือ • mixed max (array อะเรย์ );

More Related