Hướng dẫn dùng fileget trong PHP

- Hàm file_get_contents() dùng để lấy nội dung của một tập tin.

- Cú pháp:

Nội dung chính

  • Định Nghĩa.
  • Trong đó.
  • Giá trị trả về.
  • Errors/Exceptions.
  • ví dụ 1.
  • Ví dụ 2 Tìm kiếm trong include_path.
  • Ví dụ 3 Đọc một phần của tệp.
  • Ví dụ 4 sử dụng stream contexts.
  • Sự thay đổi qua các phiên bản.
  • Hàm liên quan.
  • Thông tin thêm.

file_get_contents(đường dẫn đến tập tin mà bạn muốn lấy nội dung)

- Tôi có một tập tin myCode_01.html nằm ở đường dẫn http://webcoban.vn/file/myCode_01.html với nội dung như sau:


    
        Lap Trinh Web
    
    
        

Tai lieu huong dan hoc Lap Trinh Web

HTML & CSS

Ngon ngu lap trinh PHP

- Để lấy nội dung của tập tin myCode_01.html thì tôi sử dụng đoạn mã sau:

- Khi đó, biến $text sẽ có giá trị là chuỗi:


    
        Lap Trinh Web
    
    
        

Tai lieu huong dan hoc Lap Trinh Web

HTML & CSS

Ngon ngu lap trinh PHP

- Ví dụ phía trên là chúng ta lấy toàn bộ nội dung của tập tin, để lấy một phần nội dung của tập tin thì chúng ta sử dụng cú pháp như sau:

file_get_contents(đường dẫn đến tập tin mà bạn muốn lấy nội dung, 0, NULL, start, length)

- Trong đó:

Tham sốYêu cầuMô tả
start Không bắt buộc

- Chỉ định vị trí mà bạn muốn bắt đầu lấy.

length Không bắt buộc

- Chỉ định số lượng byte mà bạn muốn lấy.

- Biến $text sẽ có giá trị là chuỗi:

- Biến $text sẽ có giá trị là chuỗi:


    
        Lap Trin</code></pre><pre><code><?php
    $text = file_get_contents("http://webcoban.vn/file/myCode_01.html", 0, NULL, 6, 40);
?></code></pre><p>- Biến $text sẽ có giá trị là chuỗi:</p><pre><code>ml>
    <head>
        <title>Lap Trin</code></pre><article><p><strong>File_get_contents</strong> là một trong những hàm thường gặp khi làm việc với ngôn ngữ PHP. Để hiểu và sử dụng thành thạo bạn hãy xem các ví dụ cụ thể sau.</p><p>Định nghĩa</p><p>Hàm <code>file_get_contents()</code> được sử dụng để đọc nội dung của file thành một chuỗi.</p><p>Cú pháp:</p><p><code>file_get_contents(path, include_path, context, start, max_length)</code></p><div style="width:100%; margin:20px auto; display:block">
<ins class="adsbygoogle"
     style="display:block; text-align:center;"
     data-ad-layout="in-article"
     data-ad-format="fluid" 
     data-ad-client="ca-pub-4987931798153631"
     data-ad-slot="8587332220"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div></p><ul><li><strong>path:</strong>
Cần thiết. Chỉ định đường dẫn đến tệp để đọc</li><li><strong>include_path:</strong> Không bắt buộc. Đặt tham số này thành ‘1’ nếu bạn cũng muốn tìm kiếm tệp trong include_path (trong php.ini)</li><li><strong>context:</strong> Không bắt buộc. Chỉ định ngữ cảnh của xử lý tệp. Ngữ cảnh là một tập hợp các tùy chọn có thể sửa đổi hành vi của một luồng. Có thể được bỏ qua bằng cách sử dụng NULL.</li><li><strong>start:</strong> Không bắt buộc. Chỉ định vị trí trong tệp để bắt đầu đọc. Giá trị âm tính
từ cuối tệp</li><li><strong>max_length:</strong> Không bắt buộc. Chỉ định độ dài tối đa của dữ liệu được đọc. Mặc định được đọc thành EOF</li></ul><p>Để hiểu rõ hơn hãy đi vào ví dụ sau:</p><pre><code><?php

$a = "https://quynhweb.pro/";

echo file_get_contents($a);

?></code></pre><p>Khi chạy file php đó bạn sẽ lấy được nội dung của toàn bộ website.</p><p>Bây giờ mình sẽ xuất ra chuỗi đó thành mảng để đọc thông tin dễ dàng hơn.</p><pre><code><?php

$a = "https://quynhweb.pro/";

$str = file_get_contents($a);

var_dump(explode(" ",$str));

?></code></pre><p><div class="imgBox"><img alt="Hướng dẫn dùng fileget trong PHP" src="/dist/images/loading.svg" data-orgimg="https://sg.cdnki.com/huong-dan-dung-fileget-trong-php---aHR0cHM6Ly9tb2ljYXBuaGFwLmNvbS9kaXN0L2ltYWdlcy9sb2FkaW5nLnN2Zw==.webp"></img></div></p></article>
<ul><li>Định Nghĩa.</li><li>Cú pháp.<ul><li>Cú pháp:</li><li>Trong đó.</li><li>Giá trị trả về.</li><li>Errors/Exceptions.</li></ul></li><li>Ví dụ.<ul><li>ví dụ 1.<ul><li>code:</li></ul></li><li>Ví dụ 2 Tìm kiếm trong include_path.</li><li>Ví dụ 3 Đọc một phần của tệp.</li><li>Ví dụ 4 sử dụng stream contexts.</li></ul></li><li>Sự thay đổi qua các phiên bản.</li><li>Ghi chú.</li><li>Hàm liên quan.</li><li>Thông tin thêm.</li></ul><h2 id="dinh-nghia">Định Nghĩa.</h2><p>Hàm <code>file_get_contents()</code> sẽ đọc
nội dung của file thành một chuỗi.</p><h2><span></span>Cú pháp.<span></span></h2><h3><span></span>Cú pháp:<span></span></h3><pre><span><span><strong>file_get_contents</strong></span> ( <span><span>string</span> <code>$filename</code></span> [, <span><span>bool</span> <code>$use_include_path</code><span> = <strong><code>FALSE</code></strong></span></span> 
[, <span><span>resource</span> <code>$context</code></span> [, <span><span>int</span> <code>$offset</code><span> = 0</span></span> [, <span><span>int</span> <code>$maxlen</code></span> ]]]] ) : <span>string</span></span></pre><h3 id="trong-do">Trong đó.</h3><ul><li><code>$filename</code> là đường dẫn tới file cần đọc.</li><li><code>$use_include_path</code> là tham số, quy định có sử dụng hằng số FILE_USE_INCLUDE_PATH làm môi trường tìm kiếm file hay không. Từ PHP 5.0.0 đến nay, <code>$use_include_path</code> sẽ mang hai giá trị FILE_USE_INCLUDE_PATH  hoặc NULL.</li><li><code>$context</code>  là kết quả
trả về của hàm <code>stream_context_create()</code>, nếu bạn không cần sử dụng ngữ cảnh tùy chỉnh có thể bỏ qua tham số này.</li><li><code>$offset</code> là vị trí bắt đầu đọc, nếu mang giá trị âm, việc đọc sẽ bắt đầu từ cuối file. nếu không được truyền vào, việc đọc sẽ bắt đầu từ đầu file.</li><li><code>$maxlen</code> là chiều dài tối đa mà hàm sẽ đọc. Nếu không truyền hàm sẽ đọc đến cuối file.</li></ul><h3 id="gia-tri-tra-ve">Giá trị trả về.</h3><ul><li>Hàm sẽ trả về một chuỗi là dữ liệu đọc được từ file. Nếu không thành công hàm
trả về false.</li></ul><pre>Lưu ý: 
Hàm này có thể trả về Boolean FALSE, nhưng cũng có thể trả về giá trị không Boolean ước tính cho FALSE.
Vui lòng đọc phần trên Booleans để biết thêm thông tin. Sử dụng toán tử === để kiểm tra giá trị 
trả về của hàm này.</pre><h3 id="errors-exceptions">Errors/Exceptions.</h3><ul><li>Một lỗi mức E_WARNING được tạo nếu không thể tìm thấy <strong>filename</strong>, <strong>maxlength</strong> nhỏ hơn 0 hoặc nếu tìm kiếm  <code>offset</code> chỉ định trong luồng không thành công.</li></ul><h2><span></span>Ví dụ.<span></span></h2><h3 id="vi-du-1">ví dụ 1.</h3><h4><span></span>code:<span></span></h4><pre><?php
$homepage = file_get_contents('http://www.example.com/');
echo $homepage;
?></pre><h3 id="vi-du-2-tim-kiem-trong-include-path">Ví dụ 2 Tìm kiếm trong include_path.</h3><pre><?php
// If strict types are enabled i.e. declare(strict_types=1);
$file = file_get_contents('./people.txt', true);
// Otherwise
$file = file_get_contents('./people.txt', FILE_USE_INCLUDE_PATH);
?></pre>
<h3 id="vi-du-3-doc-mot-phan-cua-tep">Ví dụ 3 Đọc một phần của tệp.</h3><pre><?php
// Read 14 characters starting from the 21st character
$section = file_get_contents('./people.txt', FALSE, NULL, 20, 14);
var_dump($section);
?>
// Kết quả string(14):"ll sdfdfac"</pre><h3 id="vi-du-4-su-dung-stream-contexts">Ví dụ 4 sử dụng stream contexts.</h3><pre><?php
// Create a stream
$opts = array(
  'http'=>array(
    'method'=>"GET",
    'header'=>"Accept-language: en\r\n" .
              "Cookie: foo=bar\r\n"
  )
);

$context = stream_context_create($opts);

// Open the file using the HTTP headers set above
$file = file_get_contents('http://www.example.com/', false, $context);
?></pre><h2 id="su-thay-doi-qua-cac-phien-ban">Sự thay đổi qua các phiên bản.</h2><ul><li>PHP 7.1.0 thì hỗ trợ cho các offsets âm.</li><li>PHP 5.1.0 đã thêm các tham số offset và maxlen.</li></ul><h2><span></span>Ghi chú.<span></span></h2><ul><li>Hàm này là kiểu binary-safe.(Nhị phân).</li><li>Một URL có thể được sử dụng làm tên tệp với chức
năng này nếu trình bao bọc fopen đã được bật. Xem fopen () để biết thêm chi tiết về cách chỉ định tên tệp. Xem các Giao thức và Trình bao bọc được Hỗ trợ để biết các liên kết đến thông tin về khả năng của các trình bao bọc khác nhau, ghi chú về cách sử dụng và thông tin về bất kỳ biến được xác định trước nào mà chúng có thể cung cấp</li><li><strong>Cảnh báo:</strong> Khi sử dụng SSL, Microsoft IIS sẽ vi phạm giao thức bằng cách đóng kết nối mà không gửi chỉ báo close_notify. PHP sẽ báo cáo đây
là “SSL: Lỗi giao thức nghiêm trọng” khi bạn đến cuối dữ liệu. Để giải quyết vấn đề này, giá trị của error_Vporting nên được hạ xuống mức không bao gồm các cảnh báo. PHP có thể phát hiện phần mềm máy chủ IIS bị lỗi khi bạn mở luồng bằng cách sử dụng trình bao bọc https: // và sẽ chặn cảnh báo. Khi sử dụng fsockopen () để tạo ổ cắm ssl: //, nhà phát triển có trách nhiệm phát hiện và triệt tiêu cảnh báo này.</li></ul><h2 id="ham-lien-quan">Hàm liên quan.</h2><ul><li><span>file() – Đọc toàn bộ tập
tin thành một mảng</span></li><li><span>fgets() – Lấy dòng từ con trỏ tệp</span></li><li><span>fread() – Đọc file Binary-safe </span></li><li><span>readfile() – Xuất ra một tập tin</span></li><li><span>file_put_contents() – Ghi dữ liệu vào một file</span></li><li><span>stream_get_contents() – Reads remainder of a stream into a string</span></li><li><span>stream_context_create() – Tạo một stream context</span></li><li>$http_response_header</li></ul><h2 id="thong-tin-them">Thông tin
thêm.</h2><ul><li>Cách đặt thời gian chờ đúng cách mà không làm hỏng các giá trị int<pre><?php
$ctx = stream_context_create(array(
    'http' => array(
        'timeout' => 1
        )
    )
);
file_get_contents("http://example.com/", 0, $ctx);
?></pre></li><li>file_get_contents có thể thực hiện POST.<pre>$opts = array('http' =>
  array(
    'method'  => 'POST',
    'header'  => "Content-Type: text/xml\r\n".
      "Authorization: Basic ".base64_encode("$https_user:$https_password")."\r\n",
    'content' => $body,
    'timeout' => 60
  )
);
                       
$context  = stream_context_create($opts);
$url = 'https://'.$https_server;
$result = file_get_contents($url, false, $context, -1, 40000);</pre></li></ul><p>Các bạn có thể xem chi tiết hơn trên php.net.Hi vọng với bài viết này, bạn đã hiểu rõ ứng dụng của hàm <strong><span><span>file_get_contents</span></span>()</strong> trong PHP. Nếu bạn thấy bài viết hay và có ý nghĩa hãy like và chia sẻ bài viết này để mọi người cùng nhau học tập nhé. Cảm ơn các bạn đã ghé thăm <strong>codetutam.com</strong><span></span>
</p>
</p><div class='paramage'></div> <div class="contenBreak"></div></p></div>
                                    <div class="readmore_content_exists"><button id="readmore_content"><span class="arrow"><span></span></span>Đọc tiếp</button></div>
                                </td></tr></table>
																

															 <script async src="/dist/js/lazyhtml.min.js" crossorigin="anonymous"></script>
							 <div class="lazyhtml" data-lazyhtml>
								<script type="text/lazyhtml">
									<div class="youtubeVideo"><h3>Video liên quan</h3>
            <iframe width="560" height="315" src="https://www.youtube.com/embed/PlD0WUanmrI?controls=0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"allowfullscreen></iframe>
									</div>
								</script>
							  </div>
														
							<div class="mt-3">
								<div class="tags">
																  <a href="https://biquyetxaynha.com/tags/programming" class="tag-link">programming</a>
																  <a href="https://biquyetxaynha.com/tags/php" class="tag-link">php</a>
																  <a href="https://biquyetxaynha.com/tags/File_get_contents" class="tag-link">File_get_contents</a>
																  <a href="https://biquyetxaynha.com/tags/File_put_contents" class="tag-link">File_put_contents</a>
																  <a href="https://biquyetxaynha.com/tags/PHP Online" class="tag-link">PHP Online</a>
																  <a href="https://biquyetxaynha.com/tags/GET và POST" class="tag-link">GET và POST</a>
																</div>
							</div>
							
							
							<div class="post-tools">
                                    <button data-postid="huong-dan-dung-fileget-trong-php" class="btn btn-answerModalBox"><img class="mr-1" alt="Hướng dẫn dùng fileget trong PHP" src="/dist/images/svg/messages_16.svg">Reply</button>
                                    <button data-postid="huong-dan-dung-fileget-trong-php" data-vote="up"  class="btn btn-doVote"><img class="mr-1" alt="Hướng dẫn dùng fileget trong PHP"  src="/dist/images/svg/face-smile_16.svg">4</button>
                                    <button data-postid="huong-dan-dung-fileget-trong-php" data-vote="down" class="btn btn-doVote"><img class="mr-1" alt="Hướng dẫn dùng fileget trong PHP"  src="/dist/images/svg/poo_16.svg">0</button>
                                    <button class="btn"><img class="mr-1" alt="Hướng dẫn dùng fileget trong PHP"  src="/dist/images/svg/facebook_16.svg"> Chia sẻ</button>
                            </div> 	
							
                            </div><!-- end question-post-body -->
                        </div><!-- end question-post-body-wrap -->
                    </div><!-- end question -->
                    
                    <div id="answers_huong-dan-dung-fileget-trong-php" class="answers"> </div><!-- end answer-wrap -->
					
					<div class="entryFooter">
							<div class="footerLinkAds"><div style="width:100%; margin:0 auto;">
<ins class="adsbygoogle"
     style="display:block"
     data-ad-format="autorelaxed"
     data-ad-client="ca-pub-4987931798153631"
     data-ad-slot="8199996671"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div>							
							<div class="footerRelated"><div class="postRelatedWidget">
<h2>Bài Viết Liên Quan</h2>


<div class="questions-snippet layoutNews border-top border-top-gray">
  <div class="max-width:840px">					
<ins class="adsbygoogle"
     style="display:block"
     data-ad-format="fluid"
     data-ad-layout-key="-fb-44+c1-1p-ns"
     data-ad-client="ca-pub-4987931798153631"
     data-ad-slot="7655066491"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/loi-khong-tao-duoc-dia-ao-bang-poweriso-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/47211xxN_5o/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4AdQGgALgA4oCDAgAEAEYZSBlKGUwDw==&rs=AOn4CLDnjPZQkvCamN52xhLZT_Q1DxqABg" alt="Lỗi không tạo được đĩa ảo bằng poweriso năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/loi-khong-tao-duoc-dia-ao-bang-poweriso-nam-2024">Lỗi không tạo được đĩa ảo bằng poweriso năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Ổ cứng ảo" class="tag-link">Ổ cứng ảo</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/giay-trong-tieng-anh-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/J21vsZJB5gA/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAnawIV0J6_kVK5upB0o4BkZzwVHQ" alt="Giày trong tiếng anh là gì năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/giay-trong-tieng-anh-la-gi-nam-2024">Giày trong tiếng anh là gì năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/là ai" class="tag-link">là ai</a>
                                        <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a>
                                        <a href="/tags/Là gì" class="tag-link">Là gì</a>
                                        <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a>
                                        <a href="/tags/Tiếng anh" class="tag-link">Tiếng anh</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/van-tac-bach-cung-duong-trai-tang-ton-su-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/8vMudcdXcUs/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCreC-5u75gepwODdQ2J_pKO2c4og" alt="Văn tác bạch cúng dường trai tăng tôn sư năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/van-tac-bach-cung-duong-trai-tang-ton-su-nam-2024">Văn tác bạch cúng dường trai tăng tôn sư năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Giới Tính" class="tag-link">Giới Tính</a>
                                        <a href="/tags/Trai" class="tag-link">Trai</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/cac-bai-tap-nang-cao-ve-phan-so-lop-4-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/nnvDDyiucBs/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCqcPWMXUVyz6mcuYO6yrX6Q2NDIg" alt="Các bài tập nâng cao về phân số lớp 4 năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/cac-bai-tap-nang-cao-ve-phan-so-lop-4-nam-2024">Các bài tập nâng cao về phân số lớp 4 năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a>
                                        <a href="/tags/Bài tập" class="tag-link">Bài tập</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/xbox-game-pass-ultimate-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/E4IF0jDdbaQ/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLA4jyxok-Q67dhBUuHrjDRBmJc5gw" alt="Xbox game pass ultimate là gì năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/xbox-game-pass-ultimate-la-gi-nam-2024">Xbox game pass ultimate là gì năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/là ai" class="tag-link">là ai</a>
                                        <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a>
                                        <a href="/tags/Là gì" class="tag-link">Là gì</a>
                                        <a href="/tags/Game" class="tag-link">Game</a>
                                        <a href="/tags/PC Game Pass" class="tag-link">PC Game Pass</a>
                                        <a href="/tags/Xbox Cloud gaming" class="tag-link">Xbox Cloud gaming</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/dai-duong-nao-lon-nhat-tren-trai-dat-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/L8YpYGZbA4o/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLBPMf4BO5614gwIxLjKfwY32W1OzA" alt="Đại dương nào lớn nhất trên trái đất năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/dai-duong-nao-lon-nhat-tren-trai-dat-nam-2024">Đại dương nào lớn nhất trên trái đất năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Khoa Học" class="tag-link">Khoa Học</a>
                                        <a href="/tags/Trái đất" class="tag-link">Trái đất</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/loi-operation-could-not-be-completed-error-0x709-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/Xa5L9ECIl2w/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAdKeRyVMK-C1hZyU1Y04R6tsCyMg" alt="Lỗi operation could not be completed error 0x709 năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/loi-operation-could-not-be-completed-error-0x709-nam-2024">Lỗi operation could not be completed error 0x709 năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/che-do-da-nguyen-chinh-tri-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/qX34BEE6O_g/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAVQ4fBimZQYvlJXXscSPbLrKK8xA" alt="Chế độ đa nguyên chính trị là gì năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/che-do-da-nguyen-chinh-tri-la-gi-nam-2024">Chế độ đa nguyên chính trị là gì năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/là ai" class="tag-link">là ai</a>
                                        <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a>
                                        <a href="/tags/Là gì" class="tag-link">Là gì</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/co-nen-mua-may-hada-crie-vao-dip-nao-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/Dwtum4wWlt8/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLBUPHyZriIIAbEAhk-swr5cSurqpA" alt="Có nên mua máy hada crie vào dịp nào năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/co-nen-mua-may-hada-crie-vao-dip-nao-nam-2024">Có nên mua máy hada crie vào dịp nào năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a>
                                        <a href="/tags/Có nên" class="tag-link">Có nên</a>
                                        <a href="/tags/Công Nghệ" class="tag-link">Công Nghệ</a>
                                        <a href="/tags/Máy" class="tag-link">Máy</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/sinh-vien-tieng-trung-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/MUKbVKvlGos/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAN2eEAAz4cbmGt8MWeC4WO17BOvw" alt="Sinh viên tiếng trung là gì năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/sinh-vien-tieng-trung-la-gi-nam-2024">Sinh viên tiếng trung là gì năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/là ai" class="tag-link">là ai</a>
                                        <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a>
                                        <a href="/tags/Là gì" class="tag-link">Là gì</a>
                                        <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a>
                                        <a href="/tags/Tiếng trung" class="tag-link">Tiếng trung</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	 <div class="max-width:840px">					
<ins class="adsbygoogle"
     style="display:block"
     data-ad-format="fluid"
     data-ad-layout-key="-fb-44+c1-1p-ns"
     data-ad-client="ca-pub-4987931798153631"
     data-ad-slot="7655066491"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/gia-tri-hang-hoa-bao-nhieu-thi-phai-thau-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/XkKzHMmJh74/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4JgAKuBYoCDAgAEAEYfyAwKB4wDw==&rs=AOn4CLDe6bymroPtwnnF6Yjtpd7rRHseeg" alt="Giá trị hàng hóa bao nhiêu thì phải thầu năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/gia-tri-hang-hoa-bao-nhieu-thi-phai-thau-nam-2024">Giá trị hàng hóa bao nhiêu thì phải thầu năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a>
                                        <a href="/tags/Bao nhiêu" class="tag-link">Bao nhiêu</a>
                                        <a href="/tags/Cryto" class="tag-link">Cryto</a>
                                        <a href="/tags/Giá " class="tag-link">Giá </a>
                                        <a href="/tags/Luật đấu thầu" class="tag-link">Luật đấu thầu</a>
                                        <a href="/tags/nghị định 63/2014/nđ-cp" class="tag-link">nghị định 63/2014/nđ-cp</a>
                                        <a href="/tags/thông tư 58/2024/tt-btc" class="tag-link">thông tư 58/2024/tt-btc</a>
                                        <a href="/tags/quyết định 17/2024/qđ-ttg" class="tag-link">quyết định 17/2024/qđ-ttg</a>
                                        <a href="/tags/Muasamcong" class="tag-link">Muasamcong</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/ngay-19-thang-8-la-cung-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/C5Tjl8Ac0QU/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAh_zEUBjoj2gyjYWT0pN8DRwFnsw" alt="Ngày 19 tháng 8 là cung gì năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/ngay-19-thang-8-la-cung-gi-nam-2024">Ngày 19 tháng 8 là cung gì năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/là ai" class="tag-link">là ai</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/high-school-friends-va-college-friends-cai-nao-tot-hon-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/f-NOLj2do0U/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDuBIT8AQA-SXWM6ayN-uPvA1anxQ" alt="High school friends và college friends cái nào tốt hơn năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/high-school-friends-va-college-friends-cai-nao-tot-hon-nam-2024">High school friends và college friends cái nào tốt hơn năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/hoa-don-chung-tu-hop-phap-theo-quy-dinh-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/1FJwhz2B9Sc/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAaXy-Bvx_ZP0WOmGE-fLl_9nUkpg" alt="Hóa đơn chứng từ hợp pháp theo quy định năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/hoa-don-chung-tu-hop-phap-theo-quy-dinh-nam-2024">Hóa đơn chứng từ hợp pháp theo quy định năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/nghị định 123/2024/nđ-cp." class="tag-link">nghị định 123/2024/nđ-cp.</a>
                                        <a href="/tags/Nghị định 123" class="tag-link">Nghị định 123</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/ban-van-hoa-xa-hoi-thanh-pho-ha-noi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/W04aid80q-o/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLD5RmMqz6-bsysvX6W1L3bRghKqCg" alt="Ban văn hóa xã hội thành phố hà nội năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/ban-van-hoa-xa-hoi-thanh-pho-ha-noi-nam-2024">Ban văn hóa xã hội thành phố hà nội năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/giai-sach-bai-tap-toan-lop-3-tap-2-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/vNeawkDWM7o/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4JgALQBYoCDAgAEAEYZSBlKGUwDw==&rs=AOn4CLBWsydXMJiAXEf0g753Zysd-bW2wg" alt="Giải sách bài tập toán lớp 3 tập 2 năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/giai-sach-bai-tap-toan-lop-3-tap-2-nam-2024">Giải sách bài tập toán lớp 3 tập 2 năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a>
                                        <a href="/tags/Bài tập" class="tag-link">Bài tập</a>
                                        <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a>
                                        <a href="/tags/Sách " class="tag-link">Sách </a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/bieu-tuong-cua-nuoc-viet-nam-la-con-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/CpfHTC06hVc/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAGYLDLkg5vzuTCDmzXX9mBJ4ZtnA" alt="Biểu tượng của nước việt nam là con gì năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/bieu-tuong-cua-nuoc-viet-nam-la-con-gi-nam-2024">Biểu tượng của nước việt nam là con gì năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/là ai" class="tag-link">là ai</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/bai-tap-thiet-ke-he-thong-thong-tin-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/iikTG0w-pRc/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4JgAKoBYoCDAgAEAEYaSBpKGkwDw==&rs=AOn4CLAFa7Ww-LmHZE8WgWibtLS-AQJCOA" alt="Bài tập thiết kế hệ thống thông tin năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/bai-tap-thiet-ke-he-thong-thong-tin-nam-2024">Bài tập thiết kế hệ thống thông tin năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a>
                                        <a href="/tags/Bài tập" class="tag-link">Bài tập</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/sua-loi-dang-video-dang-xu-li-0-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/7Nc--kWDpSc/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAb7VmKNvEGfN881Kn7lZJZ-LyPRg" alt="Sua lỗi đăng video đang xử lí 0 năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/sua-loi-dang-video-dang-xu-li-0-nam-2024">Sua lỗi đăng video đang xử lí 0 năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/nam-cung-bao-binh-hop-voi-cung-nao-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/dkwbq-5Q7po/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDiCbr6U0Z5se9cZvWxxOP87Tnv_g" alt="Năm cung bảo bình hợp với cung nào năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/nam-cung-bao-binh-hop-voi-cung-nao-nam-2024">Năm cung bảo bình hợp với cung nào năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	

</div>
</div></div>
					</div>
                   
                </div>    
                </div><!-- end question-main-bar -->
            </div><!-- end col-lg-9 -->
            <div class="postContentRight">
                <div class="sidebar">
					<div class="ad-card">
    <h4 class="text-gray text-uppercase fs-13 pb-3 text-center">Quảng Cáo</h4>
    <div class="mb-4 mx-auto" style="text-align:center">
      <ins class="adsbygoogle"
     style="display:block"
     data-ad-client="ca-pub-4987931798153631"
     data-ad-slot="8742637402"
     data-ad-format="auto"
     data-full-width-responsive="true">
	 </ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>
    </div>
</div>
                    <div class="card card-item">
    <div class="card-body">
        <h3 class="fs-17 pb-3">Có thể bạn quan tâm</h3>
        <div class="divider"><span></span></div>
        <div class="sidebar-questions pt-3">
                        <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/caau-50-de-vinh-lan-1-mon-toan-nam-2024">Caâu 50 đề vinh lần 1 môn toán năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/Self-fulfillingCumin" class="author">Self-fulfillingCumin</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/loi-usb-cac-folder-chuyen-thanh-file-exe-nam-2024">Lỗi usb các folder chuyển thành file exe năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/StrippedUnderdog" class="author">StrippedUnderdog</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/chan-an-la-dau-hieu-benh-gi-nam-2024">Chán ăn là dấu hiệu bệnh gì năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/GrimBarrymore" class="author">GrimBarrymore</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/bai-2-luyen-tap-trang-115-sgk-van-7-nam-2024">Bài 2 luyện tập trang 115 sgk văn 7 năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/Self-confidentDamsel" class="author">Self-confidentDamsel</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/he-truc-toa-do-oxy-la-gi-nam-2024">Hệ trục tọa độ oxy là gì năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/Horn-rimmedMajority" class="author">Horn-rimmedMajority</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/bai-tap-giam-mo-bung-tai-nha-nam-gioi-nam-2024">Bài tập giảm mỡ bụng tại nhà nam giới năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/LookingSewing" class="author">LookingSewing</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/gia-ve-galaxy-nguyen-van-qua-hom-nay-nam-2024">Giá vé galaxy nguyễn văn quá hôm nay năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/RomanticDeduction" class="author">RomanticDeduction</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/de-thi-ngu-van-hoc-ki-1-lop-9-nam-2024">Đề thi ngữ văn học kì 1 lớp 9 năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/ConsequentSeeder" class="author">ConsequentSeeder</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/lam-sao-de-bai-danh-gia-facebook-len-top-nam-2024">Làm sao để bài đánh giá facebook lên top năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/HuskyComputing" class="author">HuskyComputing</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/hach-toan-doanh-thu-chuyen-nhuong-quyen-su-dung-dat-nam-2024">Hạch toán doanh thu chuyển nhượng quyền sử dụng đất năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/SeismicBaker" class="author">SeismicBaker</a>
                    </small>
                </div>
            </div><!-- end media -->
			        </div><!-- end sidebar-questions -->
    </div>
</div><!-- end card -->
                    <div class="card card-item cardTopList">
    <div class="card-body">
        <h3 class="fs-17 pb-3">Toplist được quan tâm</h3>
        <div class="divider"><span></span></div>
        <div class="sidebar-questions pt-3">

                        <div class="media media-card media--card media--card-2">
				<div class="topListNum">#1</div>
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/toplist-top-9-tap-ban-do-lop-8-bai-31-2023">Top 9 tập bản đồ lớp 8 bài 31 2023</a></h5>
                    <small class="meta text-right">5 tháng trước</small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				<div class="topListNum">#2</div>
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/toplist-top-6-ket-qua-thi-hsg-da-nang-2022-2023">Top 6 kết quả thi hsg đà nẵng 2022 2023</a></h5>
                    <small class="meta text-right">5 tháng trước</small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				<div class="topListNum">#3</div>
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/toplist-top-9-tu-nhua-dai-loan-4-canh-3d-2023">Top 9 tủ nhựa đài loan 4 cánh 3d 2023</a></h5>
                    <small class="meta text-right">5 tháng trước</small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				<div class="topListNum">#4</div>
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/toplist-top-9-chat-khi-co-the-lam-mat-mau-dung-dich-nuoc-brom-la-a-so2-b-co2-c-o2-d-hcl-2023">Top 9 chất khí có thể làm mất màu dung dịch nước brom là: a. so2. b. co2. c. o2. d. hcl. 2023</a></h5>
                    <small class="meta text-right">5 tháng trước</small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				<div class="topListNum">#5</div>
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/toplist-top-8-tim-viec-lam-tien-phay-bao-q7-2023">Top 8 tìm việc làm tiện, phay bảo q7 2023</a></h5>
                    <small class="meta text-right">5 tháng trước</small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				<div class="topListNum">#6</div>
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/toplist-top-3-toi-xuyen-thanh-tieu-kieu-the-cua-lao-dai-phan-2-2023">Top 3 tôi xuyên thành tiểu kiều the của lão đại phản 2 2023</a></h5>
                    <small class="meta text-right">5 tháng trước</small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				<div class="topListNum">#7</div>
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/toplist-top-9-doi-moi-phong-cach-thai-do-phuc-vu-cua-can-bo-y-te-huong-toi-su-hai-long-cua-nguoi-benh-2023">Top 9 đổi mới phong cách, thái độ phục vụ của cán bộ y tế hướng tới sự hài lòng của người bệnh 2023</a></h5>
                    <small class="meta text-right">5 tháng trước</small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				<div class="topListNum">#8</div>
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/toplist-top-2-bai-the-duc-phat-trien-chung-lop-6-2022-2023">Top 2 bài the dục phát triển chung lớp 6 2022 2023</a></h5>
                    <small class="meta text-right">5 tháng trước</small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				<div class="topListNum">#9</div>
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/toplist-top-3-bai-giang-vu-dieu-sac-mau-lop-4-2023">Top 3 bài giảng vũ điệu sắc màu (lớp 4) 2023</a></h5>
                    <small class="meta text-right">5 tháng trước</small>
                </div>
            </div><!-- end media -->
			            
        </div><!-- end sidebar-questions -->
    </div>
</div><!-- end card -->
					<div class="ad-card">
    <h4 class="text-gray text-uppercase fs-14 pb-3 pb-3 text-center">Quảng cáo</h4>
    <div class="mb-4 mx-auto">
      <ins class="adsbygoogle"
     style="display:inline-block;width:300px;height:600px"
     data-ad-client="ca-pub-"
     data-ad-slot=""
     data-ad-format="auto"
     data-full-width-responsive="true"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>
    </div>
</div>
                    
<div class="card card-item">
    <div class="card-body">
        <h3 class="fs-17 pb-3">Xem Nhiều</h3>
        <div class="divider"><span></span></div>
        <div class="sidebar-questions pt-3">

                        <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/camera-dieu-khien-tren-khong-goi-la-gi-nam-2024">Camera điều khiển tren không gọi là gì năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">4 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/SquareBrunt" class="author">SquareBrunt</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/ky-hieu-ext-tren-tay-cam-ps4-pro-la-gi-nam-2024">Ký hiệu ext trên tay cầm ps4 pro là gì năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">2 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/OverhangingIceberg" class="author">OverhangingIceberg</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/nghia-vu-co-ban-cua-hop-dong-la-gi-nam-2024">Nghĩa vụ cơ bản của hợp đồng là gì năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">2 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/Short-termGrandeur" class="author">Short-termGrandeur</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/dung-ram-nhu-the-nao-cho-may-tinh-xem-phim-nam-2024">Dùng ram như thế nào cho máy tính xem phim năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">4 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/DelightedWhereabouts" class="author">DelightedWhereabouts</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/qua-tieu-hoa-lipid-se-duoc-bien-doi-thanh-gi-nam-2024">Qua tiêu hóa lipid sẽ được biến đổi thành gì năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">6 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/RabidContentment" class="author">RabidContentment</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/nha-hang-pho-dem-346-pham-van-dong-nam-2024">Nhà hàng phố đêm 346 phạm văn đồng năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 tuần trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/UnregulatedIntersection" class="author">UnregulatedIntersection</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/bai-42-vat-li-9-sach-bai-tap-nam-2024">Bài 42 vật lí 9 sách bài tập năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 tuần trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/One-manReceptor" class="author">One-manReceptor</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/anh-khong-co-font-nen-goi-la-gi-nam-2024">Anh không có font nền gọi là gì năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 tuần trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/Two-hourProcessing" class="author">Two-hourProcessing</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/loi-page-fault-in-nonpaged-area-win-7-nam-2024">Lỗi page fault in nonpaged area win 7 năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 tuần trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/ImplacableDriver" class="author">ImplacableDriver</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://biquyetxaynha.com/bai-tap-dinh-luat-boi-lo-ma-ri-ot-nam-2024">Bài tập định luật bôi lơ ma ri ốt năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">3 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://biquyetxaynha.com/author/ClandestineMemory" class="author">ClandestineMemory</a>
                    </small>
                </div>
            </div><!-- end media -->
			            
        </div><!-- end sidebar-questions -->
    </div>
</div><!-- end card -->					<div class="ad-card">
    <h4 class="text-gray text-uppercase fs-14 pb-3 pb-3 text-center">Quảng cáo</h4>
    <div class="mb-4 mx-auto" style=" text-align: center">
<div id='div-gpt-ad-1657246837997-0' style='min-width: 300px; min-height: 600px;'>
  <script>
    googletag.cmd.push(function() { googletag.display('div-gpt-ad-1657246837997-0'); });
  </script>
</div>
	  
    </div>
</div>
                    										
					
			
                   
                </div><!-- end sidebar -->
            </div><!-- end col-lg-3 -->
        </div><!-- end row -->
    </div><!-- end container -->
</section><!-- end question-area -->

<!-- ================================
         END QUESTION AREA
================================= -->
<script>var questionId ='huong-dan-dung-fileget-trong-php'</script>
<script>var postTime ='2022-10-12T03:31:56.372Z'</script>
<script>var siteDomain ='biquyetxaynha.com'</script>
<script type="text/javascript" src="https://biquyetxaynha.com/dist/js/pages/comment.js"></script>

<!-- ================================
         END FOOTER AREA
================================= -->
<section class="footer-area pt-80px bg-dark position-relative">
    <span class="vertical-bar-shape vertical-bar-shape-1"></span>
    <span class="vertical-bar-shape vertical-bar-shape-2"></span>
    <span class="vertical-bar-shape vertical-bar-shape-3"></span>
    <span class="vertical-bar-shape vertical-bar-shape-4"></span>
    <div class="container">
        <div class="row">
            <div class="col-lg-3 responsive-column-half">
                <div class="footer-item">
                    <h3 class="fs-18 fw-bold pb-2 text-white">Chúng tôi</h3>
                    <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white">
                        <li><a href="/about.html">Giới thiệu</a></li>
                        <li><a href="/contact.html">Liên hệ</a></li>
                        <li><a href="/contact.html">Tuyển dụng</a></li>
                        <li><a href="/contact.html">Quảng cáo</a></li>
                    </ul>
                </div><!-- end footer-item -->
            </div><!-- end col-lg-3 -->
            <div class="col-lg-3 responsive-column-half">
                <div class="footer-item">
                    <h3 class="fs-18 fw-bold pb-2 text-white">Điều khoản</h3>
                    <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white">
                        <li><a href="/privacy-statement.html">Điều khoản hoạt động</a></li>
                        <li><a href="/terms-and-conditions.html">Điều kiện tham gia</a></li>
                        <li><a href="/privacy-statement.html">Quy định cookie</a></li>
                    </ul>
                </div><!-- end footer-item -->
            </div><!-- end col-lg-3 -->
            <div class="col-lg-3 responsive-column-half">
                <div class="footer-item">
                    <h3 class="fs-18 fw-bold pb-2 text-white">Trợ giúp</h3>
                    <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white">
                        <li><a href="/contact.html">Hướng dẫn</a></li>
                        <li><a href="/contact.html">Loại bỏ câu hỏi</a></li>
                        <li><a href="/contact.html">Liên hệ</a></li>
                    </ul>
                </div><!-- end footer-item -->
            </div><!-- end col-lg-3 -->
            <div class="col-lg-3 responsive-column-half">
                <div class="footer-item">
                    <h3 class="fs-18 fw-bold pb-2 text-white">Mạng xã hội</h3>
                    <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white">
                        <li><a href="#"><i class="fab fa-facebook-f mr-1"></i> Facebook</a></li>
                        <li><a href="#"><i class="fab fa-twitter mr-1"></i> Twitter</a></li>
                        <li><a href="#"><i class="fab fa-linkedin mr-1"></i> LinkedIn</a></li>
                        <li><a href="#"><i class="fab fa-instagram mr-1"></i> Instagram</a></li>
                    </ul>
                </div><!-- end footer-item -->
            </div><!-- end col-lg-3 -->
        </div><!-- end row -->
    </div><!-- end container -->
    <hr class="border-top-gray my-5">
    <div class="container">
        <div class="row align-items-center pb-4 copyright-wrap">
           
            <div class="col-6">
               <a href="//www.dmca.com/Protection/Status.aspx?ID=33e5dca6-f8c5-4c6f-b8e6-a247229d2953" title="DMCA.com Protection Status" class="dmca-badge"> <img src ="https://images.dmca.com/Badges/dmca_protected_sml_120am.png?ID=33e5dca6-f8c5-4c6f-b8e6-a247229d2953"  width="123px" height="21px" alt="DMCA.com Protection Status" /></a>  <script src="https://images.dmca.com/Badges/DMCABadgeHelper.min.js"> </script>
            </div>
			<!-- end col-lg-6 --><div class="col-6">
				
                <div class="copyright-desc text-right fs-14">
					<div>Bản quyền © 2021 <a href="https://biquyetxaynha.com">Xây Nhà</a> Inc.</div>
				</div>
            </div><!-- end col-lg-6 -->
        </div><!-- end row -->
    </div><!-- end container -->
</section><!-- end footer-area -->

<!-- ================================
          END FOOTER AREA
================================= --><script>
  $( document ).ready(function() {
    setTimeout(showMoreButton, 3000);
    function showMoreButton(){
      let minheight = 1000;
      minheight = parseInt($("#entryContent").innerHeight())/3;
      $("#entryContent").css('min-height', minheight).css('max-height', minheight).css('overflow', 'hidden');
      $("#readmore_content").click(function(){
        $("#entryContent").css('min-height', '').css('max-height', '').css('overflow', '');
        $(".readmore_content_exists").css('display', 'none');
      })
    }
});
</script>

<!-- template js files -->
<!-- start back to top -->
<div id="back-to-top" data-toggle="tooltip" data-placement="top" title="Lên đầu trang">
    <img alt="" src="/dist/images/svg/arrow-up_20.svg">
</div>
<!-- end back to top -->
<script src="https://biquyetxaynha.com/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://biquyetxaynha.com/dist/js/moment.js"></script>
<script src="https://biquyetxaynha.com/dist/js/read-more.min.js"></script>
<script src="https://biquyetxaynha.com/dist/js/main.js?v=6"></script>
<!-- Google Tag Manager (noscript) -->

<script type="text/javascript">
    (function(c,l,a,r,i,t,y){
        c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
        t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
        y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
    })(window, document, "clarity", "script", "jxuz46z39u");
</script>

</body>
</html>