Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-..

Decoded Output download

<?   
 
<!DOCTYPE html> 
<html lang="en"> 
<head> 
    <meta charset="UTF-8"> 
    <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
    <meta name="viewport" content="width=device-width, initial-scale=1.0"> 
    <title>Title!!</title> 
    <style> 
        h1::before {   
  transform: scaleX(0); 
  transform-origin: bottom right; 
} 
 
h1:hover::before { 
  transform: scaleX(1); 
  transform-origin: bottom left; 
} 
 
h1::before { 
  content: " "; 
  display: block; 
  position: absolute; 
  top: 0; right: 0; bottom: 0; left: 0; 
  inset: 0 0 0 0; 
  background: #ff0000; 
  z-index: -1; 
  transition: transform .3s ease; 
} 
 
h1 { 
  position: relative; 
  font-size: 5rem; 
} 
 
html { 
  block-size: 100%; 
  inline-size: 100%; 
} 
 
body { 
  min-block-size: 100%; 
  min-inline-size: 100%; 
  margin: 0; 
  box-sizing: border-box; 
  display: grid; 
  place-content: center; 
  font-family: system-ui, sans-serif; 
} 
 
@media (orientation: landscape) { 
  body { 
    grid-auto-flow: column; 
  } 
} 
 
    </style> 
</head> 
<body> 
<h1>PHP vs JS</h1> 
</body> 
</html> ?>

Did this file decode correctly?

Original Code



<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Title!!</title>
    <style>
        h1::before {  
  transform: scaleX(0);
  transform-origin: bottom right;
}

h1:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

h1::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0 0 0 0;
  background: #ff0000;
  z-index: -1;
  transition: transform .3s ease;
}

h1 {
  position: relative;
  font-size: 5rem;
}

html {
  block-size: 100%;
  inline-size: 100%;
}

body {
  min-block-size: 100%;
  min-inline-size: 100%;
  margin: 0;
  box-sizing: border-box;
  display: grid;
  place-content: center;
  font-family: system-ui, sans-serif;
}

@media (orientation: landscape) {
  body {
    grid-auto-flow: column;
  }
}

    </style>
</head>
<body>
<h1>PHP vs JS</h1>
</body>
</html>

Function Calls

None

Variables

None

Stats

MD5 b9d283c69e922ea7220a7aa1857fa7c2
Eval Count 0
Decode Time 29 ms