Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Replace String in PHP

<html>
<head>
<title>Online PHP Script Execution</title>
</head>
<body>
<?php
$data = 'https://app.wellnezz.life/login/confirm.php?redirect=https%3A%2F%2Fapp.wellnezz.life%2Fadmin%2Ftool%2Fmobile%2Flaunch.php%3Fservice%3Dmoodle_mobile_app%26amp%3Bpassport%3D438.47807031870644%26amp%3Burlscheme%3Dmoodlemobile&data=hP9BRv0DZV0OqmH/chintan%2Eavantsoft';
   
   echo strpos($data, 'moodle_mobile_app') !== false;
   echo '\\n ';
   echo '\\n ';
   $data = str_replace('moodle_mobile_app', 'wellnezz_mobile_app',$data);
   $data = str_replace('moodlemobile', 'wellnezzmobile',$data);

   echo $data;
?>
</body>
</html>

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.