golden hour
/opt/PHP-Antimalware-Scanner/tests/Fixtures/clean
⬆️ Go Up
Upload
File/Folder
Size
Actions
calculator.php
300 B
Del
OK
hello.php
173 B
Del
OK
lineending_nrr.php
105 B
Del
OK
wordpress_like.php
337 B
Del
OK
Edit: wordpress_like.php
<?php /** * Clean WordPress-like file for testing. */ function get_user_data($user_id) { // Safe database query simulation $safe_user_id = intval($user_id); return [ 'id' => $safe_user_id, 'name' => 'Test User', 'email' => 'test@example.com', ]; } $user = get_user_data(123); print_r($user);
Save