📚 مبتدی
⏱️ 34
👁️ 25 بازدید
تست کدها
تست کدها
javascript
const codeBlock = btn.parentElement.querySelector('code');
let text = '';
// استخراج متن کد
if(codeBlock) {
text = codeBlock.innerText;
}
و کدهای زیر
php
$current_file = basename($_SERVER['PHP_SELF']);
$is_homepage = ($current_file == 'index.php' || $current_file == '');
و کدهای قالب
css
.code-block pre {
margin: 0;
padding: 15px;
overflow-x: auto;
background: #1e1e1e;
}
.code-block code {
font-family: 'Courier New', monospace;
font-size: 14px;
line-height: 1.5;
color: #d4d4d4;
direction: ltr;
text-align: left;
}