์ฌ์ฉ์ ์ ์ ํจ์ ์ ์ธํ๊ณ ํธ์ถํ๊ธฐ
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<h1>JavaScript</h1>
<script>
function a(){//ํจ์ ์ ์ธ
document.write("Hello JS Function");
}
a();//ํจ์ ํธ์ถ
</script>
<h1>php</h1>
<?php
function a(){//ํจ์ ์ ์ธ
echo "Hello PHP Function ";
}
a();//ํจ์ ํธ์ถ
?>
</body>
</html>
ํจ์์ ์ ๋ ฅ๊ฐ๊ณผ ์ถ๋ ฅ๊ฐ
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <h1>JavaScript</h1>
<script> function a(์ ๋ ฅ๊ฐor๋งค๊ฐ๋ณ์ ์ด๋ฆ์ ๋ง์๋๋ก ์ง์ ){ document.write(input+1); } a(์ ๋ ฅ๊ฐ์ ๋ค์ด๊ฐ ๊ฐ ex) 1); //์ถ๋ ฅ 2 </script>
<h1>php</h1> <?php function a($input){ return $input+1; } echo a(6); ?> </body> </html> |
<!DOCTYPE html> document.write(a(6)); <html> <head> <meta charset="utf-8"> </head> <body> <h1>JavaScript</h1>
<script> function a(input){ return input+1; //์ถ๋ ฅ๊ฐ }*์ฝ์๋ ๊ธฐํธ(๊ณ์ฐ๋ ๊ฐ์ ๋ฐํํ๋ผ) document.write(์ถ๋ ฅ๊ฐ7 a(์ ๋ ฅ๊ฐ6)); or prompt(a(6)); //์ถ๋ ฅ 7 </script>
<h1>php</h1> <?php function a($input){ return $input+1; } echo a(6); ?> </body> </html> |
'Designer_Vibi > Programming' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
๋ฐ์ดํฐ ๋ฒ ์ด์ค (0) | 2019.05.05 |
---|---|
php_๊ธฐ๋ณธ๋ฌธ๋ฒ (0) | 2019.05.02 |
JavaScript/PHP ๋ฐฐ์ด&๋ฐ๋ณต๋ฌธ ๋น๊ต (0) | 2019.04.30 |
PHP์ Javascript ๋์์๋ฆฌ (0) | 2019.04.23 |
๊ณต์ ๊ธฐ ๊ธฐ๋ณธ๊ฐ๋ (0) | 2019.04.16 |