Home  >  Article  >  Backend Development  >  PHP mathematical operation and data processing example analysis ansys finite element analysis example ansys statics analysis example ansys thermal analysis example

PHP mathematical operation and data processing example analysis ansys finite element analysis example ansys statics analysis example ansys thermal analysis example

WBOY
WBOYOriginal
2016-07-29 08:54:421000browse

The examples in this article describe PHP mathematical operations and data processing methods. Share it with everyone for your reference, the details are as follows:

1. Numeric data types

In PHP, the use of numeric or numerical data and mathematical functions is simple. Basically, there are two data types to deal with: floating point numbers and integers. The internal representation of floating point and integer values ​​are the C data types double and int respectively. Similar to C, these data types in PHP follow the same set of rules.

PHP is a loosely typed scripting language, and variables can change data types according to calculation needs. This allows the engine to perform type conversions dynamically. So, if a calculation contains a numeric value and a string, the string is converted to a numeric value before the calculation is completed, and the numeric value is converted to a string before being concatenated with the string.

<&#63;php
$a = '5';
$b = 7 + $a;
echo "7 + $a = $b";
&#63;>

PHP provides a large number of functions to check the data type of variables. There are 3 functions that check whether a variable contains a numeric value, or more specifically, whether a variable is a float or an integer.
The function is_numeric() can check whether the value passed in as a parameter is a numeric value.

The functions is_int() and is_float() are used to check the specific data type. If an integer or floating point number is passed in, these functions will return true, otherwise they will return false, even if a string with a legal numerical representation is passed in, false will be returned.

You can also force the engine to change the data type. This is called type casting, which can be achieved by adding (int), (integer), (float), (double) or (real) in front of the variable or value, or by using the function intval() or floatval() .

II. Random numbers

Random numbers are a science in themselves. There have been many different implementations of random number generators. PHP implements two of them: rand() and mt_rand(). The rand() function is a simple wrapper around a random function defined in libc, one of the basic libraries provided by the compiler used to build PHP. mt_rand() is a good alternative implementation that provides many well-designed features, and mt_rand() is even faster than the version in libc.

Both functions provide some functions to get the value of MAX_RAND. rand() is getrandmax(), mt_rand() is mt_getrandmax();

Three. Formatted data

In addition to warnings, errors and other information, most of PHP's output is generated using functions such as echo, print() and printf(). These functions convert the argument into a string and send it to the client application.
The number_format() function can convert integers and floating point values ​​into a readable string representation.

<&#63;php 
$i = 123456;
$si = number_format($i,2,".",",");
echo $si;
&#63;>

Four. Mathematical functions

abs() Absolute value
floor() Rounding by rounding
ceil() Rounding by one
round() Rounding
min() Find the minimum value or the minimum value in an array
max() Find The maximum value in the maximum value array

Readers who are interested in more PHP-related content can check out the special topics of this site: "Summary of PHP operations and operator usage", "Summary of PHP network programming skills", "Introduction to PHP basic syntax", "Summary of skills for operating office documents in PHP (including word, excel, access, ppt)", "Summary of PHP date and time usage", "Introduction to PHP object-oriented programming tutorial", "Summary of PHP string (string) usage", " php+mysql database operation introductory tutorial" and "php common database operation skills summary"

I hope this article will be helpful to everyone in PHP programming.

The above introduces the example analysis of PHP mathematical operations and data processing, including example analysis and PHP content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn