php format amount
<span> 1</span> <span>/*</span><span>* </span><span> 2</span> <span> * 格式化金额 </span><span> 3</span> <span> * </span><span> 4</span> <span> * @param int $money </span><span> 5</span> <span> * @param int $len </span><span> 6</span> <span> * @param string $sign </span><span> 7</span> <span> * @return string </span><span> 8</span> <span>*/</span> <span> 9</span> <span>function</span> format_money(<span>$money</span>, <span>$len</span>=2, <span>$sign</span>='¥'<span>){ </span><span>10</span> <span>$negative</span> = <span>$money</span> > 0 ? '' : '-'<span>; </span><span>11</span> <span>$int_money</span> = <span>intval</span>(<span>abs</span>(<span>$money</span><span>)); </span><span>12</span> <span>$len</span> = <span>intval</span>(<span>abs</span>(<span>$len</span><span>)); </span><span>13</span> <span>$decimal</span> = '';<span>//</span><span>小数</span> <span>14</span> <span>if</span> (<span>$len</span> > 0<span>) { </span><span>15</span> <span>$decimal</span> = '.'.<span>substr</span>(<span>sprintf</span>('%01.'.<span>$len</span>.'f', <span>$money</span>),-<span>$len</span><span>); </span><span>16</span> <span> } </span><span>17</span> <span>$tmp_money</span> = <span>strrev</span>(<span>$int_money</span><span>); </span><span>18</span> <span>$strlen</span> = <span>strlen</span>(<span>$tmp_money</span><span>); </span><span>19</span> <span>for</span> (<span>$i</span> = 3; <span>$i</span> < <span>$strlen</span>; <span>$i</span> += 3<span>) { </span><span>20</span> <span>$format_money</span> .= <span>substr</span>(<span>$tmp_money</span>,0,3).','<span>; </span><span>21</span> <span>$tmp_money</span> = <span>substr</span>(<span>$tmp_money</span>,3<span>); </span><span>22</span> <span> } </span><span>23</span> <span>$format_money</span> .= <span>$tmp_money</span><span>; </span><span>24</span> <span>$format_money</span> = <span>strrev</span>(<span>$format_money</span><span>); </span><span>25</span> <span>return</span> <span>$sign</span>.<span>$negative</span>.<span>$format_money</span>.<span>$decimal</span><span>; </span><span>26</span> }
The above introduces PHP formatting amount, including aspects of content. I hope it will be helpful to friends who are interested in PHP tutorials.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Most of the .tmp files are files left behind due to abnormal shutdown or crash. These temporary scratch disks have no use after you restart the computer, so you can safely delete them. When you use the Windows operating system, you may often find some files with the suffix TMP in the root directory of the C drive, and you will also find a TEMP directory in the Windows directory. TMP files are temporary files generated by various software or systems. , also known as junk files. Temporary files generated by Windows are essentially the same as virtual memory, except that temporary files are more targeted than virtual memory and only serve a certain program. And its specificity has caused many novices to be intimidated by it and not delete it.

In Linux, tmp refers to a folder that stores temporary files. This folder contains temporary files created by the system and users; the default time limit of the tmp folder is 30 days. Files under tmp that are not accessed for 30 days will be automatically deleted by the system. of.

There is a lot of garbage in the tmp directory in the centos7 system. If you want to clear the garbage, how should you do it? Let’s take a look at the detailed tutorial below. To view the list of files in the tmp file directory, execute the command cdtmp/ to switch to the current file directory of tmp, and execute the ll command to view the list of files in the current directory. As shown below. Use the rm command to delete files. It should be noted that the rm command deletes files from the system forever. Therefore, it is recommended that when using the rm command, it is best to give a prompt before deleting the file. Use the command rm-i file name, wait for the user to confirm deletion (y) or skip deletion (n), and the system will perform corresponding operations. As shown below.

The "tmp" file is a temporary file, usually generated by the operating system or program during operation, and is used to store temporary data or intermediate results when the program is running. These files are mainly used to help the program execute smoothly, but they are usually automatically deleted after the program is executed. tmp files can usually be found in the root directory of the C drive on Windows systems. However, tmp files are associated with a specific application or system, so their specific content and purpose may vary from application to application.

tmp is a temporary file generated by various software or systems, which is often called junk file. Usually, programs that create temporary files delete them when they are finished, but sometimes these files are retained. There may be many reasons why temporary files are retained: the program may be interrupted before completing the installation, or crash during restart; these files generally have little use value, and we can delete them directly.

tmp is a temporary file generated by various software or systems, which is often referred to as a junk file. tmp files can be deleted, and not deleting them for a long time will slow down the computer and cause lags. Deletion method: 1. Press the "Win+R" keys to open the "Run" dialog window; 2. Enter "cmd" and click the "Enter" key; 3. Execute "C:UsersAdministrator>del /f /s /q %systemdrive %*.tmp" command, the system will automatically delete all tmp files.

This article will explain in detail how to format a GMT/UTC date/time with PHP. The editor thinks it is quite practical, so I share it with you as a reference. I hope you can gain something after reading this article. Introduction to Formatting GMT/UTC Date/Time in PHP In PHP, formatting GMT/UTC date/time is crucial for correctly displaying and handling cross-time zone dates. This article will explain how to format a GMT/UTC date/time using PHP's DateTime class, as well as the various formatting options available. DateTime class The DateTime class represents a date and time. It can store and manipulate date/time values in time zones such as GMT/UTC. To create a new Da

decimal is a precise data type that exists in MySQL, with the syntax format "DECIMAL(M,D)". Among them, M is the maximum number of numbers (precision), and its range is "1 to 65", and the default value is 10; D is the number of digits to the right of the decimal point (scale), and its range is "0 to 30", but it must not More than M.
