Answer the question
In order to leave comments, you need to log in
How to contribute to the development of PHP?
There is little desire to contribute to the development of PHP as a language. However, I am not familiar with the C language at all. The official site has the ability to add a proposal, but it is not at all clear how to issue it and whether anyone is considering them ... Or you need to offer not only a concept, but also a ready-made implementation. And in general, is it worth spending time on this?
<?php if( $messages ) : ?>
<ul class="list">
<?php foreach( $messages as $message ) : ?>
<li class="list__item"><?php echo $message['content']; ?></li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
<?php tag( 'ul class="list"', $messages as $message ) : ?>
<li class="list__item"><?php echo $message['content']; ?></li>
<?php endtag( 'ul' ); ?>
ul class="list"
. <ul class="list">
<?php if( $messages ) : ?>
<?php foreach( $messages as $message ) : ?>
<li class="list__item col-4"><?php echo $message['content']; ?></li>
<?php endforeach; ?>
<?php else: ?>
<li class="list__item col-12">Messages not found</li>
<?php endif; ?>
</ul>
<?php tag( 'ul class="list"', $messages as $message ) : ?>
<li class="list__item col-4"><?php echo $message['content']; ?></li>
<?php elsetag(): ?>
<li class="list__item col-12">Messages not found</li>
<?php endtag( 'ul' ); ?>
Answer the question
In order to leave comments, you need to log in
All steps are described in detail: https://wiki.php.net/rfc/howto
However, I would not recommend you to waste your and others' time on this proposal.
First of all:
If you don't have the skills to fully implement your RFC and no-one volunteers to code it, there is little chance your RFC will be successful.
Make a framework that implements this concept, what is the problem, why C
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question