This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub mediaCount() | |
' | |
' mediaCount Макрос | |
' | |
' | |
Selection.TypeText Text:="Пояснительная записка " & Selection.Information(wdNumberOfPagesInDocument) & " стр., " & ActiveDocument.InlineShapes.Count & " рис., " & ActiveDocument.Tables.Count & " табл., 8 ист." | |
End Sub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM php:7.1-fpm | |
ENV DEBIAN_FRONTEND noninteractive | |
# PHP | |
# intl | |
RUN apt-get update \ | |
&& apt-get install -y libicu-dev \ | |
&& docker-php-ext-configure intl \ | |
&& docker-php-ext-install intl |