Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
lib /
php /
doc /
I18N /
docs /
[ HOME SHELL ]
Name
Size
Permission
Action
I18N_Currency.php
709
B
-rw-r--r--
I18N_DateTime.php
5.65
KB
-rw-r--r--
I18N_Message.php
2.27
KB
-rw-r--r--
I18N_Message_Translate.php
971
B
-rw-r--r--
I18N_Message_Translate.tpl
901
B
-rw-r--r--
I18N_Negotiator.php
792
B
-rw-r--r--
I18N_Number.php
1.3
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : I18N_Number.php
<?php // // // ini_set('include_path',ini_get('include_path').':../..'); require_once 'I18N/Number.php'; $locales = array('de_DE','en_US','fr_FR','it_IT'); foreach( $locales as $aLocale ) { $number = new I18N_Number( $aLocale ); myPrint("<h1>\$number = new I18N_Number( '$aLocale' );</h1>"); // // // myPrint( $number->format( pi() ) ); myPrint( $number->format( 1000000 ) ); $number->setFormat(I18N_NUMBER_INTEGER); myPrint( $number->format( pi() ) ); myPrint( $number->format( 100000.99 ) ); // set some sencesless format, which has // 4 - digits behind the decimal seperator // ; - as the decimal seperator // : - as the thousands seperator $myFormat = $number->setFormat(array( 4 , ';' , ':' )); myPrint( $number->format( pi() ) ); myPrint( $number->format( 1000000.99 ) ); // using all currently available formats, including myFormat, which we defined above myPrint( $number->format( pi() , I18N_NUMBER_INTEGER ) ); myPrint( $number->format( pi() , I18N_NUMBER_FLOAT ) ); myPrint( $number->format( pi() , $myFormat ) ); } function myPrint( $string ) { print "$string<br>"; } ?>
Close