PHP: heredoc ile kullanma Uygun Girintileme

0 Cevap php

Ben sadece heredocs için düşünce php doucmentation okumak ama ben düzgün niyet kodu için herhangi bir yol görmedim. Bu php mümkün mü?

Şu anda bunu yapıyorum, ama bu okunabilirliği için kötü.

<?php

        if(something){
            ...
            echo <<< END      
                    This is a test.  I am writing this
                    text out.  
END; 
        } # end of if statment

Ben böyle bir şey istiyorum:

<?php

        if(something){
            ...
            echo <<< END      
                    This is a test.  I am writing this
                    text out.  
            END; 
        } # end of if statment

Ben bash (ne olduğunu hatırlayamıyorum rağmen) bunu yapmak için bir yöntem olduğunu biliyorum, bu yüzden php yapmak mümkün olup olmadığını merak ediyordum. Ben öyle düşünmüyorum ama ben sormak düşündüm.

0 Cevap